主题: afterblur回调,貌似会反复执行
作者: anangfish, 发布日期: 2011-05-02 19:20:57, 浏览数: 3126


afterBlur: function(id)
{
var html=KE.html(id);
html=html.replace(/\/abc/g, "<img src=\'http://localhost/framwork/kd/plugins/emoticons/2.gif\' border=\'0\' alt=\'\' />");

KE.html(id, html);

 

 

就是这段..

 

replace貌似会一直执行下去.不知是什么原因

作者: 、 ︶ㄣ彽琱, 发布日期: 2012-11-25 14:27:36

<script type="text/javascript">
    var editor1;
        KindEditor.ready(function (K) {
            editor1 = K.create('#contentytb', {
                cssPath: '../../kindeditor-4.0.1/plugins/code/prettify.css',
                uploadJson: '../../kindeditor-4.0.1/asp.net/upload_json.ashx',
                fileManagerJson: '../../kindeditor-4.0.1/asp.net/file_manager_json.ashx',
                allowFileManager: false
            });
            prettyPrint();
        });
        function UnLink() {
            var cmd = KindEditor.cmd(document);
            editor1.cmd.selectall();
            editor1.cmd.unlink();
        }
    </script>

 

类似这样就行了

回复
作者: 、 ︶ㄣ彽琱, 发布日期: 2012-11-25 14:53:13

可以参考此例子来解决问题

http://www.52hudie.com/item_17206.html
回复
发表新帖 发表回复