我有 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>