child")举例说明...">
美文网首页
层次选择器说明

层次选择器说明

作者: crocodile_b | 来源:发表于2016-01-20 14:45 被阅读47次

    jQuery的层选择器$("ancestor descendant")和$("parent>child")举例说明

    <div>This is <strong>very</strong> important.</div>
    <div>This is <em>really <strong>very</strong></em> important.</div>
    

    以上是html。运行后在浏览器里是看到


    1.JPG

    这样的样式,为了容易看到效果,我们不妨就尝试用添加css颜色来试一下

    如果运行

    $("div strong").css("color","red");
    

    就是把div的后代元素strong变为红色。运行后是


    2.JPG

    如果运行

    $("div>strong").css("color","blue");
    

    就是把div的子元素strong变为蓝色。运行后是

    3.JPG
    • $("ancestor descendant")
      表示所有的ancestor以下的descendant
    • $("parent>child")
      表示当且仅当child紧跟着parent的时候

    相关文章

      网友评论

          本文标题:层次选择器说明

          本文链接:https://www.haomeiwen.com/subject/cpllkttx.html