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

背景显示问题

我加入了边框  为何删除包含3的后显示会不顶上边

 .test1 {

        background: #bbffaa;

        width:200px;

        height:100px;

        border:3px solid red;

    }

    

    .test2 {

        background: yellow;

        width:200px;

        height:100px;

        border:3px solid red;

    }

    </style>

</head>


<body>

    <h2>通过jQuery remove方法移除元素</h2>

    <div class="test1">

        <p>p元素1</p>

        <p>p元素2</p>

    </div>

    <div class="test2">

        <p>p元素3</p>

        <p>p元素4</p>

       

    </div>

    <button>通过点击jQuery的remove移除元素</button>

    <button>通过点击jQuery的remove移除指定元素</button>

    <script type="text/javascript">

    $("button:first").on('click', function() {

        //删除整个 class=test1的div节点

        $(".test1").remove()

    })


    $("button:last").on('click', function() {

        //找到所有p元素中,包含了3的元素

        //这个也是一个过滤器的处理

        $("p").remove(":contains('3')")

    })

    </script>


正在回答

2 回答

p标签有默认的margin

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

https://img1.sycdn.imooc.com//5b0d68750001eb5503180184.jpg"p元素4"为何不依靠着上边框

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

举报

0/150
提交
取消

背景显示问题

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