如何选择包含“name”属性的元素?
元素示例:
<select id="itemPK.country.id_id" name="itemPK.country.id"><option value="7">India</option><option value="8">Malaysia</option></select>
<input id="point_id" name="point" type="number" value="">
答案 0 :(得分:3)
$('[name]')
试试这个你可以得到名字
的所有元素答案 1 :(得分:2)
attribute selectors是您所需要的:
$('input[name="point"]')...
$('[name="something"]') //In case it's not specifically an <input> element
祝你好运
编辑:我知道,您可能要求包含某个属性的元素,而不是名称属性中包含X值的元素。 PSR提供的答案是要走的路。 This是“Has属性”选择器的文档。
答案 2 :(得分:1)
$("*[name='point']")