$(" +p",this) 和 $("p",this)的区别?

$(" +p",this) 和 $("p",this)有区别吗?

    <h1>introduction</h1>
    <p id="pp">it is a test</p>
    <script>
        $(document).ready(function(){
            $("h1+p").hide();
            $("h1").hover(function(){
                $("+p",this).show()},                function(){
                    $("+p",this).hide();});
        });    </script>


慕哥9229398
浏览 1193回答 2
2回答

月关宝盒

带加号的是表示与this同级的p,不带加号的是所有p

侃侃无极

$(this).find('p') $(this).find('+p')的区别
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery