0

嗨,我想在我的页面中创建一个 contentEditable 标记,我想要的是我在创建此元素后输入的任何文本都应该进入该标记,但它不会像那样发生。有人可以帮我吗 ?

var pElement = document.createElement('p');
$(pElement).attr('contenteditable','true')
           .addClass('current');
$(getPElement).append(pElement);
$(getPElement).find('p.current').focus();
4

1 回答 1

1

If you want to create a contenteditable element with jQuery, you can do it like this (jsFiddle):

$("<div>").attr('contenteditable', 'true').html("edit me!").appendTo('body')
于 2013-09-12T16:03:51.103 回答