當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。