jQuery选择掩码

时间:2015-04-04 05:37:17

标签: jquery

我在表单上有多个输入包含名称objectName[unique_guid].propertyName

我的输入只有unique_guid不同。

<input id="a_a" name="ObjectName[b15865be-629c-43b6-b1a6-e614d3ffeb67].Color" type="hidden" value="1">
<input id="b_b" name="ObjectName[8867e8e4-429f-4180-89e3-62bf505fcf5d].Level" type="hidden" value="2">

我是如何使用jquery选择所有输入的?

1 个答案:

答案 0 :(得分:4)

有各种基于属性的选择器。

使用Attribute starts with selector ^=

$('input[name^="ObjectName"]')

或在您的情况下$= - 属性以。结尾。

$('input[name$=".Color"]')

组合选择器:

$('input[name^="ObjectName"][name$=".Color"]') //If your PropertyName is static.