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

点击后为什么p元素的背景是黄色,而a元素的背景是青色

<!DOCTYPE html>

<html>


<head>

    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />

    <title></title>

    <script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>

    <style>

    .left div,

    .right div {

        width: 100px;

        padding: 5px;

        margin: 5px;

        float: left;

        border: 1px solid #ccc;

        background: #bbffaa;

    }

    

    .right div {

        background: yellow;

    }

    

    p {

        border: 1px solid red;

    }

    

    a {

        border: 1px solid blue;

    }

    </style>

</head>


<body>

    <h2>DOM包裹wrap()方法</h2>

    <div class="left">

        <button class="aaron1">点击,通过wrap方法给p元素增加父容器div</button>

        <button class="aaron2">点击,通过wrap的回调方法给a元素增加父容器div</div>

    </div>

    <div class="right">

        <p>p元素</p>

        <p>p元素</p>

    </div>

    <div class="left">

        <a>a元素</a>

        <a>a元素</a>

    </div>

    <script type="text/javascript">

    $(".aaron1").on('click', function() {

        //给所有p元素,增加父容器div

        $('p').wrap('<div></div>')

    })

    </script>

    <script type="text/javascript">

    $(".aaron2").on('click', function() {

        $('a').wrap(function() {

            return '<div></div>';

        })

    })

    </script>

</body>


</html>

点击后为什么p元素的背景是黄色,而a元素的背景是青色

正在回答

2 回答

既然知道了,求采纳

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

知道了,刚才没看清楚,自问自答

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

举报

0/150
提交
取消

点击后为什么p元素的背景是黄色,而a元素的背景是青色

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