UEditor编辑器设置内容只读(不可编辑)

HTML代码:

Jquery代码:

$(function(){
        var ue = UE.getEditor(''编辑器ID'');
        ue.ready(function() {
        //不可编辑
        ue.setDisabled();
        });
    });

 

参考&感谢:https://www.cnblogs.com/wangbiubiu/p/9322156.html

你可能感兴趣的:(UEditor编辑器设置内容只读(不可编辑))