-1

我需要一些帮助。我需要显示一个弹出文本框。例如,用户需要插入一个数量来显示文本框:

Quantity : 3

如果用户插入 3,则将显示 3 文本框。

ID : (Textbox)
     (Textbox)
     (Textbox)
4

2 回答 2

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" />');
            }
        }
    });
});
于 2012-04-24T03:50:48.480 回答
0
    for(var i=0; i<quantity; i++)
        Alert("your message");
于 2012-04-24T03:41:58.573 回答