我需要一些帮助。我需要显示一个弹出文本框。例如,用户需要插入一个数量来显示文本框:
Quantity : 3
如果用户插入3,则将显示3个文本框。
ID : (Textbox)
(Textbox)
(Textbox)
答案 0 :(得分:1)
HTML:
<input type="text" name="qty" id="qty" />
<input type="button" name="btn" id="btn" />
JS:
$(function() {
$('#btn').click(function() {
var qty = $('#qty').val();
if (qty > 0) {
for (var i = 0; i < qty; i++) {
$('body').append('<input type="text" />');
}
}
});
});
答案 1 :(得分:0)
for(var i=0; i<quantity; i++)
Alert("your message");