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


HTML <script> type属性用法及代码示例


HTML <script>类型的属性用于指定脚本的MIME类型并标识标签的内容。它的默认值为“text/javascript”。

用法:

<script type="media_type">

属性值:它包含单个值,即media_type,它指定脚本的MIME类型。


常见的“media_type”值为:

  • text/javascript (this is default)
  • text/ecmascript
  • application/ecmascript
  • application/javascript

例:此示例说明了<script>元素中type属性的用法。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML script type Attribute  
    </title>  
</head>  
  
<body style="text-align:center; ">  
  
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1>  
  
    <h3>  
        HTML script type Attribute  
    </h3>  
  
    <script id="myGeeks" type="text/javascript">  
        document.write("Hello from GeeksforGeeks");  
    </script>  
</body>  
  
</html>                                                       

输出:

支持的浏览器:下面列出了HTML <script>类型的Attribute支持的浏览器:

  • Google Chrome
  • Internet Explore
  • Mozila Firefox
  • Safari
  • Opera


相关用法


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