我知道如何使用jquery獲取元素的屬性。但我不確定如何使用選擇字段中的實際選項來執行此操作。jquery查找選擇選項屬性
<select referenceID="55" name="test" id="test">
<option value="1">first option</option>
<option value="2">second option</option>
<option value="3">third option</option>
</select>
爲了得到referenceID我只是這樣做:
$("#test").attr("referenceID");
當我想要得到的值:
$("#test").val();
但我希望得到一個更有趣一點。我想提出一些具體的信息到每個選項:
<select name="test" id="test">
<option value="1" title="something here"*>first option</option>
<option value="2" title="something else here">second option</option>
<option value="3" title="another thing here">third option</option>
</select>
是否有可能搶在選項標籤中的屬性?
我打算有一個讀取標題標籤的onselect函數,並幫助我處理其他一些事情。
大非常感謝 – 2014-10-01 06:05:01