フォーム入力を動的に作成したい。以下のように静的にします。
html
<input type="text" id="try1" /><br/>
<input type="text" id="try2" style="display: none"/><br/>
<input type="text" id="try3" style="display: none"/>
JavaScript
$("#try1").live("input", function(){
a = $(this).val();
if (a.length >= 3){
$("#try2").show();
}
else if (a.length <=3){
$("#try2").hide();
}
});
$("#try2").live("input", function(){
a = $(this).val();
if (a.length >= 3){
$("#try3").show();
}
else if (a.length <=3){
$("#try3").hide();
}
});
動的フォームに入力する方法。3 文字以上入力すると、新しい入力フォームが下に表示されます。お願い助けて :)