Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击“添加新”按钮时,我想在页面中添加更多文本框,以便他可以添加 n 个值。我将使用 jQuery 来做到这一点。但是在提交单击时,我想从服务器端的所有字段中获取值。我怎样才能做到这一点?
您可以使用 javascript 将值存储在具有 runat="server" 的隐藏字段中,并在 asp.net 的服务器端代码中使用该隐藏字段
用于jQuery.clone()克隆输入框。
jQuery.clone()
请记住,此输入框将采用数组形式,如下所示
<input name="clonedbox[]"
然后将其发送到submit函数或ajax调用中。
submit
ajax