本文介绍了jQuery Toggle属性contentEditable ="true"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在div中使用contenteditable ="true"
I am using contenteditable="true" in a div
每次单击div时,我想做的就是在此属性上切换是非.
What I want to do it to toggle true and false on this attribute everytime I click on a div.
示例:
$( "#mylabel" ).click(function() {
$('#editablediv').attr('contenteditable','false');
});
我尝试过:
$( "#mylabel" ).toggle(function() {
$('#editablediv').attr('contenteditable','false');
});
但是那没用
我该怎么做?
推荐答案
尝试这种方式:
$( "#mylabel" ).click(function() {
var value = $('#editablediv').attr('contenteditable');
if (value == 'false') {
$('#editablediv').attr('contenteditable','true');
}
else {
$('#editablediv').attr('contenteditable','false');
}
});
让我发帖,希望对您有所帮助
Keep me posted, hope this helped
这篇关于jQuery Toggle属性contentEditable ="true"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!