当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-19 13:52:56 浏览: 评论:0 

在php中我们经常会使用各种编辑器,下面我来介绍在PHP网页中Ewebeditor编辑器嵌入代码,各位同学可参考.

下载“Ewebeditor”PHP编辑器

在 </head> 之前加上下面一段代码:

  1. <script>  
  2. function checkForm()  
  3. {  
  4. document.form1.content .value = window.ewebeditor .getHTML();  
  5. ************getHTML() 获得编辑区内容  
  6. ************ 此处的名字 ewebeditor 要与 iframe 中的 name="ewebeditor" 相同  
  7. ************content.value 也要与 content 中的 <input > 中相对应  
  8. }  
  9. </script> 

下面一段代码是把 ewebeditor 嵌入到网页中:

  1. <input type="hidden" name="content" id="content" value ="">  
  2. **********id="content" 中的 content 要与 <iframe> 中的 id=content 相同!  
  3. <iframe id="ewebeditor" name="ewebeditor" src="ewebeditor/ewebeditor.php?id=content " frameborder="0" scrolling="no" width="100%" HEIGHT="450">  
  4. </iframe>  

Tags: PHP编辑器 Ewebeditor编辑器

分享到: