用Jquery动态添加控件并取值

 

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Jquery动态控件</title>
<script src="jquery-1.4.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(
function() {
var i = 2;
$(
'#addText').click(function() {
if (i < 9) {
$(
'#main').append('<div><input type="text" name="text" + i + ""/>
                        <a href="#" class="del-text">del</a></div>
');
i
++;
}
else {
alert(
"最多只能添加8个");
}
});
$(
'.del-text').live('click',function(){
$(
this).parent().remove();
i
--;
});
});
</script>
</head>
<body>
<div id="main">
<div>
<input type="text" name="text1" />
</div>
</div>
<a id="addText" href="#">添加文本框</a>
</body>
</html>

==========

取值的话,很简单,在后台直接用 Request["text" + i].ToString() 即可。

posted @ 2010-09-21 16:39  潇客的技术博客  阅读(10946)  评论(3编辑  收藏  举报