WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 移除包装元素但保持文本内容完整

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery unwrap() 方法

有时您可能需要删除包装器或父元素,典型示例是删除文本周围的锚标记。 使用 jQuery unwrap() 方法,您可以轻松移除包装元素并保持内部 HTML 或文本内容完整。

让我们看一个例子来了解这个方法的基本工作原理:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Remove Wrapper Element</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            $("p").find("a.link").contents().unwrap();
        });
    });
</script>
</head>
<body>
    <p>If you click the following button it will remove the anchor tag from <a href="#" class="link">this link</a> but keep the text content intact.</p>
    <button type="button">Remove Link</button>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements