这是我的jQuery代码....
$("#addinp").click(function() {
$(this).prepend('<label>Item ' + i + '<span class="small"></label><input type="text" name="middlename[]" />');
});
这是我的html....
<form id="form" name="form" method="post" action="?a=run">
<input type="text" name="firstname" id="firstname" />
<input type="text" name="lastname" id="lastname" />
<input type="text" name="middlename[]" id="middlename[]" />
<img src="add_another_name.png" id="addinp"/>
<button type="submit">Add</button>
</form>
这不会在“添加另一个按钮”之前出现另一个输入 - 烦人的是如果我这样做......
$('form').prepend('<lab........
将它添加到它将起作用的形式......但它不会出现在图像之前......