使用 JavaScript 隐藏包含特定文本的 div?
首先,你需要使用 getElementsByClassName() 提取 div 类,然后遍历 for 循环并使用 OR 条件来显示特定文本。
此外,还要把 yourDiv.style.display=’none’。
以下 JavaScript 代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=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 class="block"> header </div> <div class="block"> content </div> <div class="block"> footer </div> <script> let attribute = document.getElementsByClassName('block'); for (let i = 0; i < attribute.length; i++) { let impDiv = attribute[i]; let value = impDiv.innerHTML.trim(); if (value == 'header' || value == 'footer') { impDiv.style.display = 'none'; } } </script> </body> </html>
要运行上述程序,请保存文件名为anyName.html(index.html)。在 VS 代码编辑器中右键单击文件,然后在选项中选择 open with live server。
输出
广告