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


HTML Script type用法及代碼示例


DOM腳本類型“屬性”用於設置或返回<script>元素的type屬性的值。 type屬性用於指定腳本的MIME類型。並標識<script>標記的內容。它的默認值為“text/javascript”。

用法:

  • 它用於返回type屬性:
    scriptObject.type 
  • 它用於設置type屬性:
    scriptObject.type = MIME_type 

屬性值:它包含值i.eMIME type,該值指定腳本的MIME類型。


常用值:

  • text/javascript(這是默認設置)
  • text/ecmascript
  • application/ecmascript
  • application/javascript

返回值:它返回一個表示腳本的MIME類型的字符串值。

範例1:本示例說明了如何返回Type屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM script type Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        DOM script type property 
    </h2> 
  
    <script id="myGeeks" type="text/javascript"> 
        document.write("Hello GeeksForGeeks"); 
    </script> 
    <br> 
    <br> 
    <button onclick="Geeks()">Submit</button> 
    <h2 id="demo"></h2> 
    <script> 
        function Geeks() { 
            var x = document.getElementById("myGeeks").type; 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例說明了如何設置Type屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        DOM script type Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        DOM script type property 
    </h2> 
  
    <script id="myGeeks" type="text/javascript"> 
        document.write("Hello GeeksForGeeks"); 
    </script> 
    <br> 
    <br> 
    <button onclick="Geeks()">Submit</button> 
    <h2 id="demo"></h2> 
    <script> 
        function Geeks() { 
            var x =  
                document.getElementById("myGeeks").type =  
                "MIME_type "; 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM腳本類型屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Script type Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。