创建新帖子时,我在管理帖子页面中有一个文本区域,即标题:
<textarea id="post-title-0" class="editor-post-title__input" placeholder="Add title" rows="1" style="overflow: hidden; overflow-wrap: break-word; resize: none; height: 94px;">vbhgfhfgh</textarea>
我想使用jQuery动态更新标题。我试过了
$(\'#post-title-0\').val(\'some value\');
$(\'#post-title-0\').text(\'some value\');
我还尝试使用普通javascript。
val()
更新标题,但当我单击标题时,它将被删除。是否仍然可以通过JS更新标题?