如何设置nicedit不可编辑

发布于 2024-10-05 06:05:42 字数 134 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

意犹 2024-10-12 06:05:42

这是我与 nicEdit 一起使用的一个有用的 jQuery 解决方案:

jQuery('.nicEdit-main').attr('contenteditable','false');
jQuery('.nicEdit-panel').hide();

您只需将其更改回“true”即可使其再次可编辑。

注意:我会考虑将 div 背景颜色与此解决方案一起切换。

Here is a helpful jQuery solution that I use with nicEdit:

jQuery('.nicEdit-main').attr('contenteditable','false');
jQuery('.nicEdit-panel').hide();

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.

掀纱窥君容 2024-10-12 06:05:42

最后的解决方案是

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();

晨敛清荷 2024-10-12 06:05:42

随着声明
nicEditors.findEditor("TextArea").disable(); Niceeditor 不可编辑

nicEditors.findEditor("TextArea").attr("contentEditable","true");

不会使其再次可编辑

With the statement
nicEditors.findEditor("TextArea").disable(); niceditor is non editable
But

nicEditors.findEditor("TextArea").attr("contentEditable","true");

does not make it editable again

指尖凝香 2024-10-12 06:05:42

对我来说只有这个有效:

document.getElementsByClassName('nicEdit-main')[0].removeAttribute('contentEditable');

for me only this worked:

document.getElementsByClassName('nicEdit-main')[0].removeAttribute('contentEditable');
森林迷了鹿 2024-10-12 06:05:42

我猜它是一个所见即所得的编辑器。

试试这个...

document.getElementById('nicedit').removeAttribute('contentEditable');

I'm going to guess it is a WYSIWYG editor.

Try this...

document.getElementById('nicedit').removeAttribute('contentEditable');
独孤求败 2024-10-12 06:05:42

函数 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');
}

青衫儰鉨ミ守葔 2024-10-12 06:05:42

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();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文