我在每个div上添加contenteditable
属性.edit
:
$(document).ready(function() {
$(".edit").attr("contenteditable", "true");
});
此后,当我点击div
contenteditable="true"
我无法修改rightclick
但我div
cursor to edit
时,spacebar
显示arrow keys
但是div with class edit
和draggable
无效。
在我的代码中,resizable
上还应用了其他内容,例如mouseenter
,mouseleave
以及许多其他事件,例如{{1}},{{1}}等我知道我的问题并没有包含足够的信息,但是我希望发布它可能有人已经面临这个问题并且有解决方案。谢谢:))
答案 0 :(得分:2)
试试这个:
$(document).ready(function() {
$(".edit").prop("contentEditable", "true"); // Note the capital E
});
答案 1 :(得分:0)
尝试以下代码,
$(".edit").attr("contenteditable", "true").foucs();