コードにいくつかのエラーがあります。
$counter = 0;
$("#add").click(function() {
$counter++;
//I removed the `<br />` tag and added a bit of CSS because if you remove the <input /> tags the <br /> tags added with them remain
$("#ipblock").append('<input type="text" name="inputip" id="inputip'+$counter+'" size="22" />');
});
$("#del").click(function() {
//this just makes sure there is actually an element to select before trying to select it
if ($counter) {
//use double quotes to start and stop the string here
$("#inputip"+$counter).remove();
//make sure to refer to `$counter` and not `counter`
$counter = $counter - 1;
}
});
ここにデモがあります:http://jsfiddle.net/fQBNE/29/
呼び出し<br />
でタグが不要になるように、この CSS を追加しました。.append()
/*This will put each input on its own line*/
#ipblock > input {
display:block;
}
アップデート
$counter
変数を使用せずにこれを行う別の方法は、クリック イベント ハンドラーで最後のinput
要素を選択することです。#del
$("#add").click(function() {
//notice no ID is needed
$("#ipblock").append('<input type="text" name="inputip" size="22" />');
});
$("#del").click(function() {
//first try to select the last inputip element
var $ele = $('#ipblock').children('input[name="inputip"]').last();
//only proceed if an element has been selected
if ($ele.length) {
//and now remove the element
$ele.remove();
}
});
ここにデモがあります:http://jsfiddle.net/fQBNE/31/