当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Track default用法及代码示例


DOM轨道默认属性用于设置或返回轨道的默认状态。它反映了默认属性。

注意:使用默认属性时,每个媒体元素不得超过一个Track元素。

用法:


  • 它用于返回默认属性。
    trackObject.default
  • 它还用于设置默认属性。
    trackObject.default = true|false

值:它是true或false,表示轨道的默认状态。默认情况下为false。

  • true:如果用户的偏好未指示其他轨道更合适,则将启用轨道。
  • false:如果用户的偏好未指示其他轨道更合适,则将不启用轨道。

返回值:它以布尔值的形式返回轨道的默认状态。

<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2> 
      Track default Property 
  </h2> 
  
    <video width="100" 
           height="100"
           controls> 
  
        <track src= 
"https://contribute.geeksforgeeks.org/wp-content/uploads/11.mp4" 
               kind="subtitles"
               srclang="en" 
               label="English" 
               default> 
  
            <source id="myTrack" 
                    src= 
"https://contribute.geeksforgeeks.org/wp-content/uploads/11.mp4" 
                    type="video/mp4"> 
  
    </video> 
  
    <p> 
      Click the button to get the  
      default property of the track. 
  </p> 
  
    <button onclick="myFunction()"> 
        Get Default property 
    </button> 
  
    <p id="gfg"></p> 
    <!-- Script to set the default property -->
    <script> 
        function myFunction() { 
            var x = 
                document.getElementById("myTrack"); 
            x.default = true; 
            document.getElementById("gfg").innerHTML =  
              myTrack.default; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 10.0+
  • Opera


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Track default property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。