如何使用 mootools 获取文本字段的值?
您好,我的表单中有一个像这样的文本字段
<input type="text" name="optionsArray[]" class="pollOptionInput">
,我想获取这些值,它们可以是值 1 = 123 值 2= foo 值 3= bar 等等,列表可以继续。
我想获取这些值,以便我可以通过 ajax 将它们传递到我的控制器。
Hi i have in my form a text field like this
<input type="text" name="optionsArray[]" class="pollOptionInput">
and i want to get those values they can be value 1 = 123 value 2= foo value 3= bar etc the list can go on.
i want to get those values so i can pass them to my controller via ajax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否正确理解了这一点 - 所有字段都将具有相同的名称吗?
如果是这样,这有效:
在标记
结果上:
["foo", "boo", "bar"]
您需要 mootools 1.2+ 才能保证按原样解析 name 属性,它将失败1.11/1.12
更新:
not sure if I read this correctly - are all the fields going to have the same name?
if so, this works:
on markup
results in:
["foo", "boo", "bar"]
you need mootools 1.2+ to be guaranteed parsing of the name property as is, it will fail in 1.11/1.12
update: