gpt4 book ai didi

javascript - jquery每个fadein输入框

转载 作者:行者123 更新时间:2023-11-28 07:53:11 24 4
gpt4 key购买 nike

我想淡入给定数字的输入框,如果我有 5 作为数字,我想淡入 5 个输入框。有人可以帮忙吗?

$('.submit').click(function(){
var num = $('#num').val();

$.each(function() {
$('.box').fadeIn('fast').html('<input type="text">');//I need five input boxes
});
});

最佳答案

您的$.each()调用不正确。尝试简单的 for 循环:

$('.submit').click(function(){
var num = parseInt($('#num').val());
var html = '';

for (; num > 0; num--) {
html += '<input type="text">';
}

$('.box').html(html).fadeIn('fast');
});

关于javascript - jquery每个fadein输入框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26519168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com