可能是一個愚蠢的問題,但即時通訊真的卡住了..沒有這個代碼發生。這就像js沒有正確連接?不知道爲什麼JS不會加載到html
add.js
$('select').on('change', function() {
alert(this.value);
})
HTML:
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="add.js"></script>
</head>
<select>
<option value="1">One</option>
<option value="2">Two</option>
</select>
提供完整的html。在寫你的js和你加載jquery的地方很重要。 – dhilt
[jQuery獲取select onChange的值的值可能重複](https://stackoverflow.com/questions/11179406/jquery-get-value-of-select-onchange) –