为了账号安全,请及时绑定邮箱和手机立即绑定

子元素选择器疑问

子元素选择器 为什么div和222上都有下划线,到底哪个是first-child?

正在回答

1 回答

 //div所有内容
  $("#selector6").click(function() {
    $("div:first-child")
      .css("text-decoration", "underline")
  })

//div下首个元素
  $("#selector7").click(function() {
    $("div>:first-child")
      .css("text-decoration", "underline")
  })

看看上边的区别

教程地址:http://www.w3school.com.cn/cssref/selector_first-child.asp

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

子元素选择器疑问

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信