有问题的财产问题

时间:2012-06-10 12:01:40

标签: javascript jquery html html5

我在每个div上添加contenteditable属性.edit

$(document).ready(function() {
    $(".edit").attr("contenteditable", "true");
});

此后,当我点击div contenteditable="true"我无法修改rightclick但我div cursor to edit时,spacebar显示arrow keys但是div with class editdraggable无效。

在我的代码中,resizable上还应用了其他内容,例如mouseentermouseleave以及许多其他事件,例如{{1}},{{1}}等我知道我的问题并没有包含足够的信息,但是我希望发布它可能有人已经面临这个问题并且有解决方案。谢谢:))

2 个答案:

答案 0 :(得分:2)

试试这个:

$(document).ready(function() {
    $(".edit").prop("contentEditable", "true"); // Note the capital E
});

答案 1 :(得分:0)

尝试以下代码,

 $(".edit").attr("contenteditable", "true").foucs();