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


HTML Source type用法及代码示例


HTML DOM中的Source type属性用于在<source>元素中设置或返回type属性的值。 type属性用于指定媒体资源的MIME类型。

用法:

  • 它返回Source类型的属性。
     sourceObject.type
  • 它用于设置Source type属性。
    sourceObject.type = MIME_type 

属性值:它包含单个值MIME_type,用于指定媒体资源的MIME_type。很少的MIME类型是video /ogg,videomp4,audio /ogg等。


返回值:它返回一个字符串值,表示媒体资源的MIME_type。

范例1:本示例返回Source类型的Property。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
  
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML DOM Source type property</h2> 
  
    <audio controls> 
        <source id="mySource" src="gameover.wav" type="audio/mpeg"> 
  
        <source src="gameover.ogg" type="audio/ogg">  
    </audio> 
  
    <p>Click the button to get the type of the audio file.</p> 
  
    <button onclick="myFunction()"> 
        Get Source type 
    </button> 
  
    <p id="demo"></p> 
  
    <script> 
        function myFunction() { 
  
            var x = document.getElementById("mySource").type; 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html> 
                    

输出:
在单击按钮之前:

单击按钮后:


范例2:
本示例设置“源类型”属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
  
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>HTML DOM Source type property</h2> 
  
    <audio controls> 
        <source id="mySource" src="gameover.wav" type="audio/mpeg"> 
  
        <source src="gameover.ogg" type="audio/ogg">  
    </audio> 
  
    <p>Click the button to set the source  
         type of the audio file.</p> 
  
    <button onclick="myFunction()"> 
        Set Source type 
    </button> 
  
    <p id="demo"></p> 
  
    <script> 
        function myFunction() { 
  
            var x = document.getElementById("mySource").type = "audio/ogg"; 
            document.getElementById("demo").innerHTML =  
             "The source type has been changed to " +x; 
        } 
    </script> 
  
</body> 
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 谷歌浏览器
  • Firefox
  • IE浏览器
  • Opera
  • Safari


相关用法


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