0

我有以下 HTML 元素

<p class="story" contenteditable="true">This is a story.</p>

现在我想通过 javascript 将元素置于编辑模式。我认为像下面这样的东西会起作用,但它没有

$('.story').click();

如何在不单击元素的情况下手动将此元素置于编辑模式(通过 javascript 或任何其他方式)?

4

2 回答 2

3

使用focus代替click

$(".story").focus();
于 2013-01-28T20:09:11.353 回答
-1
$('.story').focus(function(){
    $(this).attr('contenteditable', 'true');
});
于 2013-01-28T20:09:49.857 回答