1

我正在使用可编辑的 jquery 插件(http://www.tectual.com.au/posts/7/jQuery-Editable-Plugin-Best-In-Place-Editor-.html)

当使用以下代码使 div 可编辑时,它似乎只适用于除 IE 之外的所有浏览器。

有趣的是,在作者的插件网站上,我在 IE 中对其进行了测试,该插件似乎工作正常,所以我想知道它是否与我正在做的事情有关?

这是 jQuery

$(document).ready(function() {
 $('.edit').editable('', {
     indicator : 'Saving...',
     onblur : 'submit',
     style   : 'display: inline'
 });
});
4

1 回答 1

4

div无需使用任何js即可设置为可编辑。设置contentEditable = "true",你就完成了。

<div style="width:200px;height:300px;border:2px solid red;" contentEditable="true"></div>
于 2012-11-13T19:23:40.753 回答