选择所有下拉菜单

发布于 2024-09-09 07:03:50 字数 683 浏览 3 评论 0原文

在我的表单中,我通过以下方式声明了 dropdows:

Html.DropDownList(String.Format("Record[{0}].Action", i), new[]
{
    new SelectListItem { Text="Ajustar Quantidade", Value= ((int)InventoryGoodsActionEnum.AdjustQuantity).ToString()},
    new SelectListItem { Text="Relocalizar", Value= ((int)InventoryGoodsActionEnum.AdjustLocation).ToString(), Selected=true},
    new SelectListItem { Text="Ajustar Quantidade e Relocalizar", Value= ((int)InventoryGoodsActionEnum.AdjustQuantityLocation).ToString()},
    new SelectListItem { Text="Ignorar", Value= ((int)InventoryGoodsActionEnum.Ignore).ToString()},
})

现在我希望能够使用 jquery 获取所有它们(它们将是多个,因为 id 增加),以便我可以迭代它们。 我该怎么做?

Inside my form, I've declared dropdows the following way:

Html.DropDownList(String.Format("Record[{0}].Action", i), new[]
{
    new SelectListItem { Text="Ajustar Quantidade", Value= ((int)InventoryGoodsActionEnum.AdjustQuantity).ToString()},
    new SelectListItem { Text="Relocalizar", Value= ((int)InventoryGoodsActionEnum.AdjustLocation).ToString(), Selected=true},
    new SelectListItem { Text="Ajustar Quantidade e Relocalizar", Value= ((int)InventoryGoodsActionEnum.AdjustQuantityLocation).ToString()},
    new SelectListItem { Text="Ignorar", Value= ((int)InventoryGoodsActionEnum.Ignore).ToString()},
})

Now I'd like to be able to get all of them (they will be multiple because the id increases) with jquery so I can iterate through them.
How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

过潦 2024-09-16 07:03:50

使用 标签/元素选择器 和属性 starts-with 选择器,如下所示:

$("select[name^='Record[']")each(function() {
  //do something
});

这将选择所有带有 name="Record[.. .." 进行循环。如果有必要,您也可以添加 ends-with 选择器,如下所示:

$("select[name^='Record['][name$='].Action']")each(function() {
  //do something
});

Use a tag/element selector and an attribute starts-with selector, like this:

$("select[name^='Record[']")each(function() {
  //do something
});

This will select all dropdowns with a name="Record[...." to loop through. If necessary you can add a ends-with selector as well, like this:

$("select[name^='Record['][name$='].Action']")each(function() {
  //do something
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文