<p>如下所示:</p><pre class="brush:js;toolbar:false"><selectid="city">
<optionvalue="beijing">北京</option>
<optionvalue="shanghai">上海</option>
<optionvalue="shenzhen">深圳</option>
</select>
$(function(){
$("#city").change(function(){
①//已获取select为当前this元素
})
})</pre><p>如果想要在①获取选中option的值可以有如下方法</p><p>$("#city option:selected").val(); //使用选择器</p><p>$(this).children('option:selected').val() //使用this</p><p>有时候我们会想当然的这样写 $(this "a"), $("this a")之类,这样是不对的</p><p>以上这篇jQuery获取this当前对象子元素对象的方法就是小编分享给大家的全部内容了。</p>