kindeditor 4问题。。。
function showEdit(){ var editor; KindEditor.ready(function(K) { editor = K.create('textarea[name="content"]', { allowPreviewEmoticons : false, allowImageUpload : false, allowFlashUpload : false, newlineTag : 'br', pasteType : 1, items : [ 'source','plainpaste', 'wordpaste' , '|','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'table' , '|', 'emoticons', 'image', 'flash', 'link' , 'map' , 'clearhtml', 'about'] }); }); return editor; }
然后我在页面用
<script>var e = showEdit();e.html('test');</script>
编辑器可以加载出来 为什么e.html('test'); 没用呢
以前用3.5 的时候没啥问题,换了4 后 就得不到editor了
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
引用来自“cooc123”的答案
看我的
test.html
ccccc 没用插入到编辑器里面
引用来自“pyawen”的答案
为什么不把
var
editor; 作为全局变量
为什么不把
var
editor; 作为全局变量
function test_insert(){
看我的
test.html
ccccc 没用插入到编辑器里面
我是这样的:
先 :
<script>
var editor;
var options = {
width : '744px',
height : '504px',
filterMode : false
};
KindEditor.ready(function(K) {
editor = K.create('#editor_id',options);
});
</script>
后面
<script type="text/javascript">
$(document).ready(function(){
$('#save_mail').click(function(){
html = editor.html();
alert(html);
})
})
</script>
引用来自“鲍平”的答案
<script type="text/javascript">
showEdit();
editor.html('test');
</script >
<script type="text/javascript">
showEdit();
editor.html('test');
</script >