gpt4 book ai didi

Jquery添加输入

转载 作者:行者123 更新时间:2023-12-01 00:54:29 25 4
gpt4 key购买 nike

我有<input type="file" name="p1" size="100" />

请告诉我如何添加<input type="file" name="p2" size="100" />等等使用 jquery add ..

谢谢

我正在努力 var i = $('input').size() + 1;

$('a.add').click(function() {

$('<input type="file" name"p' + i + 'size="100" />')
.animate({ opacity: "show" }, "slow")
.appendTo('#inputs');
i++;
});

最佳答案

你的 HTML 困惑了:

$('<input type="file" name"p' + i + 'size="100" />')

应该是

$('<input type="file" name="p' + i + '" size="100" >')

原始版本缺少“=”和“name”属性值的双引号字符。另外你不需要自动关闭<input>标签。

关于Jquery添加输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4649981/

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