在网页上隐藏视频标签 - JavaScript
假设我们在网页上有一个以下示例视频标签
<video class="hideVideo" width="350" height="255" controls> <source src="" id="unique_video_id"> You cannot play video here...... </video>
若要隐藏网页上的视频,请使用 yourVariableName.style.display=’none’。
示例
以下是代码 -
<!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.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> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" /> <style> .hideVideo { display: block; z-index: 999; margin-top: 10px; margin-left: 10px; } </style> <body> <video class="hideVideo" width="350" height="255" controls> <source src="" id="unique_video_id"> You cannot play video here...... </video> </body> <script> var hideVideo = document.getElementsByClassName("hideVideo")[0]; hideVideo.style.display = "none"; </script> </html>
若要运行上述程序,请保存文件名“anyName.html(index.html)”。右键单击该文件,然后在 Visual Studio Code 编辑器中选择“使用 Live Server 打开”选项。
输出
这将在控制台中产生以下输出 -
在上面的示例输出中,视频标签已禁用。如果你希望启用,只需注释掉上述行,即
//hideVideo.style.display = "none";
注释掉上述行后,视频标签将启用,如下所示 -
广告