使用jquery添加输入字段

时间:2013-04-01 16:48:02

标签: jquery

  1. 新手在这里用jquery
  2. 我想在我已创建的表单中添加几个输入字段
  3. 原因是 - 如果新用户想要将新学位添加到数据库中已有的学位
  4. 这是我的jquery代码

    $("#addinst").click(function(){ $("mainform").append("<p> <label align="left">Institution #1:</label> <input name="EdInstitutionName1" type="text" value="" size="70" maxlength="100" /> </p>");

  5. 这是表单

    的一部分

    <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>

1 个答案:

答案 0 :(得分:1)

在您的jQuery代码中,您似乎缺少表单的id。要选择表单,请使用:

$('#mainform').append

而不是

$('mainform').append

在jQuery中,ids需要在其前面加#。如果没有#符号,jQuery将查找具有该名称的标记。同样,在类名前面使用.选择类。

有关jQuery选择器的更多信息,请参阅the jQuery selector API