jQuery 从 h1 克隆数据并附加到输入框

jQuery clone data from h1 and append to an input box

我正在尝试从 header 标签中获取内容并将其放入输入框。

我的代码可以正常工作,但我无法将数据输入输入框 - 谁能帮忙吗?

$(".myDiv h1:first").clone(true, true).contents().appendTo(".inputClass");

<h1>this is my data</h1>
<input value="" />

您不需要克隆该元素

尝试这样做:

$(".inputClass").val($(".myDiv h1:first").text());