2 回答
TA贡献1943条经验 获得超7个赞
这么包括进去,data指向的就是那个包括html编辑器的对象赋值用
document.all.msg.value=内容
---------------------------------------------------------------
你的那个对象,有没有value这个属性的呀,必须有这个属性的哟
---------------------------------------------------------------
那它是不是可写的呀,
属性有可写不与可写之分的呀
你自己研究一下它的源程序的呀,
又不是很难的
---------------------------------------------------------------
1、将下面的代码放在head区中
<script language=javascript<!--
function abc(){
document.form1.doc_html.value = document.form1.cont.value
return true}
function CheckForm(){
document.form1.content.value=document.form1.doc_html.value;
return true}//--
</script
2、<body onload=javascript:abc()
将数据库中的记录保存在另外一个textarea中,并赋值给编辑器
3、下面是表单的部分细节,利用onsubmit动作将修改后的html代码赋值给隐藏的content,为存入数据库做好资准备。<%=content%从数据库中取出记录:
<form method=POST action=...... name=form1 onsubmit=return CheckForm()
<OBJECT id=doc_html style=LEFT: 0px; TOP: 0px data=editor.htm width=544 height=320 type=text/x-scriptlet VIEWASTEXT
<embed src=editor.htm width=544 height=320</embed
</OBJECT
<textarea style=display:none name=cont
<%=content%
</textarea以上是测试成功的代码
- 2 回答
- 0 关注
- 468 浏览
添加回答
举报