鑑於下面的HTML,我需要一個jQuery選擇器,選擇<option>
與with-stamp
類。jQuery選擇<select>的<option>框
<select name="preset_select">
<option selected="selected" value="original">ORIGINAL</option>
<option value="large">LARGE</option>
<option class="with-stamp" value="medium">MEDIUM</option>
</select>
$("select[name=preset_select]").change(function() {
// console.log($(this).hasClass("with-stamp")); // all false
// console.log($("select[name=preset_select] option").hasClass("with-stamp")); // all true
});
謝謝,首先我以爲我沒有工作,但我看到你改變了我的名字:-) – FFish 2010-11-24 06:32:40