读取数组名为 jquery 的 html 元素

发布于 2024-12-06 10:01:04 字数 655 浏览 0 评论 0原文

可能的重复:
如何获取值按名称而不是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

如梦 2024-12-13 10:01:04
$(document).ready(function() {
    $('input[name="item[tags][]"]').each(function (){
        alert($(this).val());
    });
});
$(document).ready(function() {
    $('input[name="item[tags][]"]').each(function (){
        alert($(this).val());
    });
});
南…巷孤猫 2024-12-13 10:01:04

您可以使用它来获取名为“something”的输入的值。如果你想获取它的值,你不应该使用 display none

$('input[name=something]').val()

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

$('input[name=something]').val()
[浮城] 2024-12-13 10:01:04

您不必使用括号将值作为数组传递,因为 name 不需要在页面中保持唯一。具有相同 name 属性的值会自动作为数组传递到表单提交中。

我创建了一个用元素值填充 JS 数组的示例。

标记:

<ul id="mytags" class="tagit">
     <li class="tagit-choice">
     Acrylic
     <input type="hidden" name="tags" value="Acrylic">
     </li>
     <li class="tagit-choice">
     Bath
     <input type="hidden" name="tags" value="Bath">
     </li>
</ul>

代码

var tags = new Array[];
$("#mytags").find("[name='tags']").each(
    function() {
        tags.push($(this).val());
    }
);
alert(tags.toString());

您可以使用它: 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 same name attribute are passed on form submit as an array automatically.

I created an example filling JS array with elements values.

Markup:

<ul id="mytags" class="tagit">
     <li class="tagit-choice">
     Acrylic
     <input type="hidden" name="tags" value="Acrylic">
     </li>
     <li class="tagit-choice">
     Bath
     <input type="hidden" name="tags" value="Bath">
     </li>
</ul>

Code

var tags = new Array[];
$("#mytags").find("[name='tags']").each(
    function() {
        tags.push($(this).val());
    }
);
alert(tags.toString());

You can play with it: http://jsfiddle.net/VAjeN/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文