PHP网页中Ewebeditor编辑器嵌入方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-07-19 13:52:56 浏览: 评论:0
在php中我们经常会使用各种编辑器,下面我来介绍在PHP网页中Ewebeditor编辑器嵌入代码,各位同学可参考.
下载“Ewebeditor”PHP编辑器
在 </head> 之前加上下面一段代码:
- <script>
- function checkForm()
- {
- document.form1.content .value = window.ewebeditor .getHTML();
- ************getHTML() 获得编辑区内容
- ************ 此处的名字 ewebeditor 要与 iframe 中的 name="ewebeditor" 相同
- ************content.value 也要与 content 中的 <input > 中相对应
- }
- </script>
下面一段代码是把 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>
Tags: PHP编辑器 Ewebeditor编辑器
- 上一篇:php 获取客户端的ip地址程序代码
- 下一篇:php获取http状态码程序代码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)