我想将在textarea中的内容插入大源码中去,我使用的是PHP
KindEditor.ready(function(K) { K('#create1').click(function() { var dialog = K.dialog({ width : 500, title : '测试窗口', body : '<textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>', closeBtn : { name : '关闭', click : function(e) { dialog.remove(); } }, yesBtn : { name : '确定', click : function(e) { this.insert(1, 2, 3, 4, 5, 6); } }, noBtn : { name : '取消', click : function(e) { dialog.remove(); } } }); }); });