我用 jquery 动态载入kindeditor.js文件
$.ajax({
type: "GET",
url: "test.js",
dataType: "script",
success: function(msg){
KE.show({
id : 'content1',
skinType: 'tinymce',
cssPath : './index.css',
items : [
'source', 'fullscreen', 'print', 'undo', 'redo', 'cut', 'copy', 'paste',
'plainpaste', 'wordpaste', 'justifyleft', 'justifycenter', 'justifyright',
'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
'superscript', 'emoticons', 'link', 'unlink', '-',
'title', 'fontname', 'fontsize', 'textcolor', 'bgcolor', 'bold',
'italic', 'underline', 'strikethrough', 'removeformat', 'selectall', 'image',
'flash', 'media', 'table', 'hr', 'about'
]
});
}
});
程序代码差不多就是这个意思 我在kindeditor.js中加入var aa=‘你好’ alert的时候可以显示aa的值 可是在线编辑器却出不来 这是为什么啊 也没有出现javascript的错误