gpt4 book ai didi

jquery - 使用jquery动态添加文本框

转载 作者:行者123 更新时间:2023-11-30 23:54:10 24 4
gpt4 key购买 nike

这段代码有什么问题?只有首先添加和删除链接才有效...

<html>
<head>

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

<style type="text/css">
div{
padding:8px;
}
</style>

</head>

<body>


<script type="text/javascript">

$(document).ready(function(){

var counter = 2;

$(".addButton").click(function () {

if(counter>5){
alert("Only 5 textboxes allow");
return false;
}

var newTextBoxDiv = $(document.createElement('div'))
.attr("id", 'TextBoxDiv' + counter);

newTextBoxDiv.html('<TABLE><TR><TD>' +
'<input type="text" name="textbox' + counter +
'" id="textbox' + counter + '" value="" ></TD><TD><input type="text" name="textbox' + counter +
'" id="textbox' + counter + '" value="" ></TD>&nbsp;<TD><a href="#" value="addButton" class="addButton">Add</a>&nbsp;<a href="#" value="removeButton" class="removeButton">Remove</a></TD></TR></TABLE>');

newTextBoxDiv.appendTo("#TextBoxesGroup");


counter++;
});

$(".removeButton").click(function () {
if(counter==1){
alert("No more textbox to remove");
return false;
}

counter--;

$("#TextBoxDiv" + counter).remove();

});

$("#getButtonValue").click(function () {

var msg = '';
for(i=1; i<counter; i++){
msg += "\n Textbox #" + i + " : " + $('#textbox' + i).val();
}
alert(msg);
});
});
</script>
</head><body>

<div id='TextBoxesGroup'>
<div id="TextBoxDiv1">
<TR><TD><input type='textbox' id='textbox1' ></TD>&nbsp;<TD><input type="text" name="textbox' + counter +
'" id="textbox' + counter + '" value="" ></TD>&nbsp;<TD><a href="#" value="addButton" class="addButton">Add</a>&nbsp;<a href="#" value="removeButton" class="removeButton">Remove</a></TD></TR>
</div>
</div>

</body>
</html>

最佳答案

当您绑定(bind) click() 处理程序时,页面上只有一个要绑定(bind)的 Add 链接。使用live()捕获页面上尚未出现的元素的点击事件:

$(".addButton").live("click", function () {

工作演示:http://jsfiddle.net/u9hvp/

关于jquery - 使用jquery动态添加文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4204122/

24 4 0
文章推荐: jquery - jscrollpane 水平鼠标滚轮
文章推荐: JQuery - 如何将change()函数绑定(bind)到动态创建的