首页 > php代码 > PHP网页中Ewebeditor编辑器嵌入方法

PHP网页中Ewebeditor编辑器嵌入方法

在php中我们经常会使用各种编辑器,下面我来介绍在PHP网页中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 嵌入到网页中:
 

 代码如下 复制代码
<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>



教程链接:http://www.phprm.com/code/49743.html

随意转载~但请保留教程地址★

标签:iframe

相关文章

发表留言