JavaScript 通过id删除元素
要按id删除元素,你可以使用remove()。
示例
以下是代码 –
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
<h1 id="demo">Hello</h1>
<p id="demo1">This is my paragraph</p>
</body>
<script>
document.getElementById("demo").remove();
</script>
</html>
要运行上述程序,请保存文件名 anyName.html(index.html)。在该文件上点击右键,在VS代码编辑器中选择 “用实时服务器打开 “选项。
输出
这将产生以下输出 —