如何在jQuery中檢測到select標籤中的任何選項已被更改?jQuery - 檢測HTML選擇選項是否被選中的事件處理程序
例如[僞]:
event handler function -> option changed(){
//do some stuff
}
編輯:
我有以下選擇:
<select id = "selectattribute">
<OPTION VALUE="0">Choose Attribute</OPTION>
<?php echo($options);?>
</select>
我jQuery中嘗試這樣的:
$(document).ready(function() {
$("#selectattribute").change(function() {
alert('Handler for .change() called.');
});
});
沒有任何反應...... e功能不是; t觸發。
編輯:它的工作原理,當我使用的$("#select")
代替$("#selectattribute")...can you not apply it to particular select tags?
您附加一個偵聽change事件選擇元素。您可以使用jQuery(或任何數量的庫),或幾行純腳本或內聯處理程序。 – RobG
@RobG:你真的不應該建議內聯處理程序... – Saxoier
你有沒有嘗試過不同的瀏覽器? –