我正在使用可编辑的 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'
});
});