选择所有下拉菜单
在我的表单中,我通过以下方式声明了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 标签/元素选择器 和属性 starts-with 选择器,如下所示:
这将选择所有带有
name="Record[.. .."
进行循环。如果有必要,您也可以添加 ends-with 选择器,如下所示:Use a tag/element selector and an attribute starts-with selector, like this:
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: