Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ซ่อนแท็กวิดีโอบนหน้าเว็บ - 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.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>
<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)” คลิกขวาที่ไฟล์และเลือกตัวเลือก “เปิดด้วย Live Server” ในตัวแก้ไขโค้ด Visual Studio

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -

ซ่อนแท็กวิดีโอบนหน้าเว็บ - JavaScript

ในเอาต์พุตตัวอย่างด้านบน แท็กวิดีโอถูกปิดใช้งาน หากคุณต้องการเปิดใช้งาน เพียงแสดงความคิดเห็นบรรทัดด้านบน เช่น

//hideVideo.style.display = "none";

หลังจากแสดงความคิดเห็นในบรรทัดข้างต้น แท็กวิดีโอจะเปิดใช้งานดังที่แสดงด้านล่าง -

ซ่อนแท็กวิดีโอบนหน้าเว็บ - JavaScript