如何设置nicedit不可编辑
我正在使用 nicedit js,它是我的文本区域中的所见即所得编辑器来查看 html 文档,但它仍然可编辑,如何将此 nicedit 设置为只读模式,我尝试从其文档中搜索但无法找到它,请执行任何操作有使用nicedit的经验,
提前致谢
i'm using nicedit js which is is a WYSIWYG editor in my textarea to view html doc, but it still editable, how to set this nicedit to readonly mode, i try to search from its doc but unable to find it, do any one have experience using nicedit,
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
这是我与 nicEdit 一起使用的一个有用的 jQuery 解决方案:
您只需将其更改回“true”即可使其再次可编辑。
注意:我会考虑将 div 背景颜色与此解决方案一起切换。
Here is a helpful jQuery solution that I use with nicEdit:
You can simply change it back to 'true' to make it editable again.
Note: I would consider toggling the div background-color along with this solution.
最后的解决方案是
var myNicEditor = new nicEditor();
myNicEditor.addInstance('templateContent');
nicEditors.findEditor("templateContent").disable();
finally the solution is
var myNicEditor = new nicEditor();
myNicEditor.addInstance('templateContent');
nicEditors.findEditor("templateContent").disable();
随着声明
nicEditors.findEditor("TextArea").disable(); Niceeditor 不可编辑
但
不会使其再次可编辑
With the statement
nicEditors.findEditor("TextArea").disable(); niceditor
is non editableBut
does not make it editable again
对我来说只有这个有效:
for me only this worked:
我猜它是一个所见即所得的编辑器。
试试这个...
I'm going to guess it is a WYSIWYG editor.
Try this...
函数 edit(){
a = new nicEditor({fullPanel : true}).panelInstance('area5',{hasPanel : true});
}
函数 no_edit(){
a.removeInstance('area5');
}
function edit(){
a = new nicEditor({fullPanel : true}).panelInstance('area5',{hasPanel : true});
}
function no_edit(){
a.removeInstance('area5');
}
nicEditors.findEditor("TextArea").disable();
上面的语句将禁用 TextArea。
要启用 TextArea,请更新 nicEdit.js(请参阅下面要更新的内容)
搜索 disable: function () { this.elm.setAttribute("contentEditable", "false"); }
在此代码旁边添加以下代码
, enable: function () { this.elm.setAttribute("contentEditable", "true"); }
并在 JavaScript 中调用 nicEditors.findEditor("TextArea").enable();
nicEditors.findEditor("TextArea").disable();
above statement will disable the TextArea.
For enabling the TextArea, update the nicEdit.js (see below what to update)
search for disable: function () { this.elm.setAttribute("contentEditable", "false"); }
next to this code add the below code
, enable: function () { this.elm.setAttribute("contentEditable", "true"); }
and in your JavaScript call nicEditors.findEditor("TextArea").enable();