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


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