gpt4 book ai didi

javascript - 如何使用 tinymce 的复选框按钮在运行时打开和关闭只读模式?

转载 作者:行者123 更新时间:2023-11-30 06:53:30 27 4
gpt4 key购买 nike

我已将 tinymce 设置为仅在初始化时准备就绪,但如何在运行时使用复选框按钮将其设置为可编辑模式?

html,

<textarea id="my_textarea_id" readonly="readonly">Some content here.</textarea>
<input type="checkbox" class="switch" /> <span>Turn editor on/ off</span>

js,

var readonly = $("textarea#my_textarea_id").attr("readonly") ? 1 : 0;

tinyMCE.init({
theme : "advanced",
mode: 'none',
readonly : readonly,
...
});

var object = $('.switch');
object.click(function(){
if(object.prop('checked') === true){
$("#my_textarea_id").data('readonly','true');
} else {
$("#my_textarea_id").data('readonly','false');
}
});

最佳答案

试试这个

var object = $('.switch');
object.change(function(){
$('#my_textarea_id').attr('readonly',!this.checked);
})

关于javascript - 如何使用 tinymce 的复选框按钮在运行时打开和关闭只读模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24934054/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com