给定下面的HTML,我需要一个jQuery选择器来选择< 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 });
解决方法
$("select[name='preset_select']").change(function() { $(this).children(':selected').hasClass('with-timestamp') }