主题: load() 载入页面不显示Kindeditor!求解决!急! |
作者: deak, 发布日期: 2011-12-26 17:14:26, 浏览数: 3034 |
load() 载入页面不显示Kindeditor!求解决!急! JS无报错啊!咋办 |
作者: 冰水咖啡[30], 发布日期: 2012-01-04 10:49:04 |
http://www.kindsoft.net/ke4/examples/dynamic-load.html
参考官方LOAD 实例看看~
$(function() { var editor; $('input[name=load]').click(function() { $.getScript('../kindeditor-min.js', function() { KindEditor.basePath = '../'; editor = KindEditor.create('textarea[name="content"]'); }); }); $('input[name=remove]').click(function() { if (editor) { editor.remove(); editor = null; } }); }); |
回复 |