<html>
<head>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#num").click(function () {
$(".Box:first").clone().appendTo("#form");
});
});
</script>
</head>
<body>
<div id="form">
Hai Add Another by clicking the button
</div>
<div class='Box'>
<input id ="j" type="text" />
<input id ="Text1" type="text" />
</div>
<button id="num">Click Me</button>
<button id="BtnSave">Save</button>
</body>
</html>
当我单击“单击我”按钮时,它可以正常工作。这就是添加另一组文本框。这里我的问题是我需要来自这些输入文本框的数据。根据用户点击Click Me按钮,文本框的数量可以是5到10.如果它是VBS,那就太棒了。我需要用户输入的数据输入框,当用户点击保存按钮时。它可以像一个字符串。我只需要数据。