动态文本框生成

时间:2011-07-16 12:14:06

标签: javascript html ajax

我有一个文本框,用户在其中输入1到10之间的数字。根据在文本框中输入的数字,必须动态生成许多文本框(我的意思是不按任何按钮)。任何人都可以帮我解决这个问题吗?

2 个答案:

答案 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>

演示:http://sandbox.phpcode.eu/g/d6046.php

答案 1 :(得分:0)

element.onchange

document.getElementById("YourId").onchange = function(){
   alert("The text in the textbox has changed");
}