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

return '<div class="' + $(this).text() + '" />';?

<!DOCTYPE html>

<html>


<head>

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

    <title></title>

    <script src="https://www.imooc.com/static/lib/jquery/1.9.1/jquery.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 class="' + $(this).text() + '" />';????

        })

    })

    </script>

</body>


</html>


正在回答

3 回答

我第一次看也是相同的疑问,但功能却实现了,我就猜测是不是

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

这三者是等价的,于是测试了一下,果然如此

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

这个class就没有起作用

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

$(this).text()中的this指代元素a,即$("a").text(),意思是a元素,class="'a元素'",类选择器的值‘a元素’,添加的并没啥作用。

2 回复 有任何疑惑可以回复我~
#1

atlunix

thank you.
2018-09-17 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

return '<div class="' + $(this).text() + '" />';?

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