名前に番号付きの入力を追加したい(すでに成功しています)が、空の場合はボタンをクリックしてそれらを消去します(できませんでした)。このコードでは、すべての検索クラスの入力が消去されます。空のものだけを削除したい。これが私の試みです:
<script type="text/javascript">
// contains the counter for elements added
window.__buttonClickCounter = 1;
// Keep reference to container
var c = document.getElementById('inputs');
// Click handler that appends to the contents of the container
var clickhandler = function () {
c.innerHTML = c.innerHTML + "<input class='search' style='margin-bottom:4px;' type='search' name='word" + window.__buttonClickCounter + "'/>";
window.__buttonClickCounter++;
$('#removebtn').click(function () {
$('.search').remove();
});
}
</script>
ありがとう!