在内容框加个点击触发显示验证码的JS不就好了 ?
如: <textarea onclick="document.getElementById('showcode').style.display='block';"></textarea>
<div id=showcode style="display:none;">验证码: ....</div>
那就点击内容框调取验证码的页面代码吧 ..
<script>
var addcode_f=false;
function addcode(){
if(!addcode_f){
if (document.getElementById('showcode')) {
document.getElementById('showcode').innerHTML='验证码:<input name="CodeStr" type="text" size="6" maxlength="20" /> <img id="showcodeimg" src="验证码文件链接" style="cursor:hand;border:1px solid #ccc;vertical-align:top;" onclick="this.src=\' 验证码文件链接地址;" alt="如果看不清数字或字母?请点一下换一个!" title="如果看不清数字或字母?请点一下换一个!" /><input type="hidden" name="showcodename" value="1111111" /> \n ';
}
}
addcode_f=true;
}
</script>
<textarea onclick="addcode ();"></textarea>
<div><span id="showcode"></span><input type=submit value="提交"></div>