读取数组名为 jquery 的 html 元素
可能的重复:
如何获取值按名称而不是 ID 的元素
如何从以下 HTML 文档中读取名为 item[tags][]
的字段的值:
<ul id="mytags" class="tagit">
<li class="tagit-choice">
Acrylic
<input type="hidden" name="item[tags][]" value="Acrylic" style="display: none;">
</li>
<li class="tagit-choice">
Bath
<input type="hidden" name="item[tags][]" value="Bath" style="display: none;">
</li>
</ul>
Possible Duplicate:
How to get a value of an element by name instead of ID
How can I read the value of the field named item[tags][]
from the following HTML document:
<ul id="mytags" class="tagit">
<li class="tagit-choice">
Acrylic
<input type="hidden" name="item[tags][]" value="Acrylic" style="display: none;">
</li>
<li class="tagit-choice">
Bath
<input type="hidden" name="item[tags][]" value="Bath" style="display: none;">
</li>
</ul>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用它来获取名为“something”的输入的值。如果你想获取它的值,你不应该使用 display none
You can use this for getting value of a input with named 'something'. And you shouldnt use display none if you want to get its value
您不必使用括号将值作为数组传递,因为
name
不需要在页面中保持唯一。具有相同name
属性的值会自动作为数组传递到表单提交中。我创建了一个用元素值填充 JS 数组的示例。
标记:
代码
您可以使用它: http://jsfiddle.net/VAjeN/
You don't have to use brackets to pass values as an array since
name
is not required to be unique across the page. Values with the samename
attribute are passed on form submit as an array automatically.I created an example filling JS array with elements values.
Markup:
Code
You can play with it: http://jsfiddle.net/VAjeN/