我有一份案文和一份清单,列出其中之外的若干变量。 我需要能够点击一个变量,将其放在案文领域。
<div id="var1" class="insert">Name</div>
<div id="var2" class="insert">Street address</div>
<textarea id="targetText">some text already here</textarea>
在插入后,我需要考虑:
<textarea id="targetText">some text already here {Street address}</textarea>
I was thinking of using click function:
$(".insert").click(function () {
// some magic to add to textarea
});