朋友发来个叫QZONEEDIT编辑器的东西 感觉界面不错 想加到正在开发的网站里,但是纠结怎么取值
界面是这样的 代码我贴在下面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<body>
<!--
正常情况下,<form method=post action="" onsubmit="return false">中的
onsubmit="return false" 是不需要的,这里为了演示取值,加上了这句
关于发光字,发光字样式 <span class="ShowText">发光字</span>
比如发表后浏览发表的页面,要定义 ShowText 的CSS样式
表情及信纸图片路径请在 edit.html 中设定
edit.html?I=content&B=ContentBg
I= 内容textarea的name
B= 信纸 input 的 name
信纸及内容中都可以有默认值,比如编辑一篇日志
调用代码示例,代码需放在form中 ,iframe 需放在id为ContentWin的div中
===========================================================
<div id="ContentWin" style="width:800px;height:480px">
<input name="ContentBg" type=hidden>
<textarea name="content" style="display:none"></textarea>
<iframe src="edit.html?I=content&B=ContentBg" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:100%;width:100%"></iframe>
</div>
===========================================================
-->
<form method=post action="" onsubmit="return false">
<div id="ContentWin" style="width:640px;height:300px">
<iframe src="edit.html?I=content&B=ContentBg" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:100%;width:100%"></iframe>
</div>
<input type="submit" value="提交">
<br><br>
下面是隐藏表单[为了演示取值,没有隐藏],详细说明见本页源代码中的注释<br>
信纸: <input type="text" value="" name="ContentBg" size=106><br>
<textarea name="content" style="width:800px;height:100px">这里是内容内容</textarea>
</form>
</body>
</html>