内容可编辑属性的问题

Issue with contenteditable property

本文关键字:问题 属性 编辑      更新时间:2023-09-26

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

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

现在在此之后,当我单击无法编辑其contenteditable="true"div时,但是当我rightclickdiv时,它会显示cursor to edit,但随后spacebararrow keys不起作用。

在我的代码中,还有其他东西也应用于div with class edit,如draggableresizable和许多其他事件,如mouseentermouseleave等。我知道我的问题不包含足够的信息,但我发布它,希望有人可能已经面对这个问题并有解决方案。谢谢:)

试试这个:

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

试试下面的代码,

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