2

我有 4 个输入,其中 3 个是隐藏的。我想要的是每当用户将“添加更多图片”。它将显示隐藏的输入,与单击链接的时间一样多。我不知道它将如何在 Jquery 中工作?如果有人帮助我将不胜感激。

<html>
<head>
</head>
<body>
<form>
<input type="file" id="pic1" />
<input type="file" style="display:none;" id="pic2" />
<input type="file" style="display:none;" id="pic3" />
<input type="file" style="display:none;" id="pic4" />

<a href="#" id="AddMore">Add More Links</a>
</form>
</body>
</html>
4

1 回答 1

1

试试这个:

$('#AddMore').click(function(e){
   e.preventDefault();
   $('input[type="file"]:hidden:first').show()
})

演示

于 2012-07-14T00:39:07.427 回答