主题: 行: 4361错误: DOM Exception: NOT_FOUND_ERR (8) ? |
作者: 柳子枫, 发布日期: 2012-10-04 19:09:40, 浏览数: 3871 |
在插件里调用外部程序test(),会执行3次test1(),最后提示 行: 4361 错误: DOM Exception: NOT_FOUND_ERR (8) ? 测试了一下,如果有alert()就会错误。 KindEditor.plugin('hello', function (K) { var editor = this, name = 'hello'; // 点击图标时执行 editor.clickToolbar(name, function () { //editor.insertHtml('你好'); test1(); }); }); function test1() { alert("这是一个测试"); } |