0
我已經看過很多帖子,但看不到我所做的與其他地方的建議不同。jQuery數據元素總是未定義的,爲什麼
我有以下幾點:
<select class="SS2" name="nSS">
<option class="SSO" data-section="1" selected="selected" disabled="disabled">Select an Option</option>
<option class="SSO" data-section="1" value="1">option 1</option>
<option class="SSO" data-section="1" value="2">option 2</option>
</select>
</br>
然後我有以下的jQuery:
<script>
$(document).ready(function() {
$('body').on('change', '.SS2', function() {
var id1 = $(this).data('section');
var id2 = $(this).val();
alert(id1);
alert(id2);
})
});
</script>
當它運行alert(id1)
它出現未定義,但如預期alert(id2)
作品。 任何人都可以解釋爲什麼我不能拿起data('section')
。
我一直在使用$(this).attr('data-section')
。爲什麼我沒有看到。 。 。爲此歡呼。 – IGGt
@IGGt很高興幫助:) – Tushar