2013-03-07 118 views
1

如何選擇包含「名稱」屬性的元素?元素具有名稱屬性元素的jQuery選擇器

例子:

<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=""> 

回答

3
$('[name]') 

試試這個,你可以得到一個具有名稱

2

attribute selectors是你所需要的所有元素:

$('input[name="point"]')... 
$('[name="something"]') //In case it's not specifically an <input> element 

好運

編輯:我看到,您可能要求包含某個屬性的元素,而不是在name屬性中包含X值的元素。 PSR提供的答案是要走的路。 This是「有屬性」選擇器的文檔。

相關問題