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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。