这是我的jquery代码
$("#addinst").click(function(){
$("mainform").append("<p>
<label align="left">Institution #1:</label>
<input name="EdInstitutionName1" type="text" value="" size="70" maxlength="100" />
</p>");
这是表单
的一部分 <form id="someform" >
<fieldset id="mainField">
<p><label align="left">Institution #1:</label>
input name="EdInstitutionName1" type="text" value="" size="70" maxlength="100" />
tr>
td align="left">City, State #1:</td>
td><input name="EdInstitutionLocation1" type="text" value="" size="70" maxlength="100" /></td>
</tr>
答案 0 :(得分:1)
在您的jQuery代码中,您似乎缺少表单的id
。要选择表单,请使用:
$('#mainform').append
而不是
$('mainform').append
在jQuery中,ids
需要在其前面加#
。如果没有#
符号,jQuery将查找具有该名称的标记。同样,在类名前面使用.
选择类。
有关jQuery选择器的更多信息,请参阅the jQuery selector API