主题: Iframe中无法清除kindeditor内的html |
作者: jone, 发布日期: 2012-04-24 20:06:22, 浏览数: 3510 |
操作系统: xp
浏览器版本: ie6 ,ff KindEditor版本: 4.0.6 BUG再现步骤: 1.在下载包"examples"文件夹中新建HTML档a.htm,插入<iframe src="default.html" width="100%" height="100%"></iframe> 2.default.htm中插入如下代码:
function cd() { KindEditor.ready(function(K) { editor.html(''); });} <input type="button" name="button" id="button" onClick="cd();" value="按钮">
期望结果: 直接运行default.htm 点击按钮是能清除编辑器的代码.但是在a.htm 点击无效. kindeditor 作为一种HTml编辑器.一般以后台中运用较多,而大部后台结构均采用框架形式.而我在实际情况中是用AJAX传送表单中的数据.然后增成功能.通过cd这个函数来清除编辑器内的内容.
|