PHP网页 Ewebeditor 编辑器嵌入方法
更新时间:2009年07月05日 13:23:44 作者:
因为ewebeditor编辑器的功能强大,容易扩展等原因,一直是大家比较喜爱的编辑器,所以下面介绍下ewebeditor如何跟php结合。
(1)在 </head> 之前加上下面一段代码:(得到 ewebeditor 中编辑的内容)
<script>
function checkForm()
{
document.form1.content .value = window.ewebeditor .getHTML();
************getHTML() 获得编辑区内容
************ 此处的名字 ewebeditor 要与 iframe 中的 name="ewebeditor" 相同
************content.value 也要与 content 中的 <input > 中相对应
}
</script>
(2)下面一段代码是把 ewebeditor 嵌入到网页中:
<tr>
<td align="right" width="5%" > 内容: </td>
<td width="95%">
<input type="hidden" name="content" id="content" value ="">
**********id="content" 中的 content 要与 <iframe> 中的 id=content 相同!
<iframe id="ewebeditor" name="ewebeditor" src="ewebeditor/ewebeditor.php?id=content " frameborder="0" scrolling="no" width="100%" HEIGHT="450">
</iframe>
</td>
</tr>
<script>
function checkForm()
{
document.form1.content .value = window.ewebeditor .getHTML();
************getHTML() 获得编辑区内容
************ 此处的名字 ewebeditor 要与 iframe 中的 name="ewebeditor" 相同
************content.value 也要与 content 中的 <input > 中相对应
}
</script>
(2)下面一段代码是把 ewebeditor 嵌入到网页中:
<tr>
<td align="right" width="5%" > 内容: </td>
<td width="95%">
<input type="hidden" name="content" id="content" value ="">
**********id="content" 中的 content 要与 <iframe> 中的 id=content 相同!
<iframe id="ewebeditor" name="ewebeditor" src="ewebeditor/ewebeditor.php?id=content " frameborder="0" scrolling="no" width="100%" HEIGHT="450">
</iframe>
</td>
</tr>
相关文章
eWebEditor_v280_Free_Final最好用的网页编辑器下载
eWebEditor_v280_Free_Final最好用的网页编辑器下载...2007-09-09FCKeditor提供了一个完整的JavaScript API
FCKeditor提供了一个完整的JavaScript API(Application Public Interface),你可以利用这些API来处理FCK编辑器,只要它被加载完成或在正在运行中.2009-12-12关于jsp版ueditor1.2.5的部分问题解决(上传图片失败)
这篇文章主要介绍大家在使用jsp版ueditor1.2.5的碰到的一些问题解决方法,需要的朋友可以参考下2013-06-06常用网页编辑器漏洞手册(全面版)fckeditor,ewebeditor
常用网页编辑器漏洞手册(全面版)fckeditor,ewebeditor,使用这类编辑器的朋友一定要注意下。2011-04-04
最新评论