我有一个文本框,用户在其中输入1到10之间的数字。根据在文本框中输入的数字,必须动态生成许多文本框(我的意思是不按任何按钮)。任何人都可以帮我解决这个问题吗?
答案 0 :(得分:4)
<input id="input" />
<div id="space"></div>
<script>
$("#input").keyup(function(){
var $count = $(this).val();
$("#space").html('');
for ($i=0;$i<$count;$i++)
{
$("#space").append('<input name="'+$count+'_input" />');
}
});
</script>
答案 1 :(得分:0)
document.getElementById("YourId").onchange = function(){
alert("The text in the textbox has changed");
}