$("#addSelect").click(function() {
$("#optionsForm").after("Hello world.");
} );
这有效。
$("#addSelect").click(function() {
$("#optionsForm").after("<tr>
<td><input type="text" class="optionField" value="Options" /></td>
<td>
<ul class="option">
<li><select><option>Value..</option></select></li>
</ul>
</td>
</tr>");
} );
像这样的东西没有。
在 Chrome 中,我收到错误“ Unexpected token ILLEGAL ”。谷歌搜索后,我发现我的小脑袋不太了解 javascript 和多行。所以我在每行的末尾添加了 '\'。然而,我现在收到错误“意外标识符”。
我希望这不会像我做的那样困难:)