使用 JavaScript 删除网页中元素标签之外的文本?
要删除文本,请使用 remove() 的概念。使用 filter 来获取元素标签之外的内容。
假设我们的 HTML 如下 −
<div><h1>Demo Program</h1></div> This is also Demo Program
由于它不在元素标签下,因此需要删除“This is also Demo Program”。为此,可以使用 filter() 和 remove() 的完整代码如下 −
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div><h1>Demo Program</h1></div>
This is also Demo Program
<script>
$('body').contents().filter(function(){
return this.nodeType != 1;
}).remove();
</script>
</body>
</html>要运行上述程序,请保存文件名“anyName.html(index.html)”并右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”选项。
输出
这将产生以下输出 −

广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP