我希望在其名稱中添加已編號的輸入(已成功完成),但如果爲空(無法),也可以通過單擊按鈕將其刪除。使用此代碼,所有搜索類別的輸入都將被刪除。我只想要空的部分被刪除。這裏是我的嘗試:單獨刪除輸入
<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>
謝謝!
你使用jQuery? – 2013-03-20 06:26:31
當removebtn被點擊時你將如何知道哪些輸入已被刪除 – 2013-03-20 06:27:11