试图利用 j,使 but子搬走母。
我的发言:
<div class="web_store_fields" id="web_store_input1">
<p>
<label for="web_store_address[]" >Store Address : </label>
<input name="web_store_address[]" class="web_store_info" type="text" value="http://www." size="35"/>
<input class="button_remove_web_store" type="button" value="Remove" />
</div>
jquery divmov Code:
$( .button_remove_web_store ).click(function() {
$(this).parents("div:first").remove();
});
this works ok for the div that s in the html when the page loads but not for div created dynamically by user (using this jquery code):
$( #button_add_web_store ).click(function() {
var num = $( .web_store_fields ).length;
var newNum = new Number(num + 1);
var newElem = $( #web_store_input + num).clone().attr( id , web_store_input + newNum);
$( #web_store_input + num).after(newElem);
});
简言之,充满活力的创造正在打工,问题在于消除这些 d。
任何建议都会受到高度赞赏。