jQuery获取this当前对象子元素对象

<select id="city">
     <option value="beijing">北京</option>
     <option value="shanghai">上海</option>
     <option value="shenzhen">深圳</option>
</select>
  • 1
  • 2
  • 3
  • 4
  • 5
$(function(){
    $("#city").change(function(){// 已获取select为当前this元素
    })
})
  • 1
  • 2
  • 3
  • 4
  • 5

如果想要在①获取选中option的值可以有如下方法

$("#city option:selected").val();  //使用选择器
$(this).children('option:selected').val() //使用this
  • 1
  • 2

有时候我们会想当然的这样写 $(this “a”), $(“this a”)之类,这样是不对的

作者:itmyhome

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

猜你喜欢

转载自www.cnblogs.com/skiwnchqhh/p/10338852.html