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


HTML defer屬性用法及代碼示例


HTML defer屬性是一個布爾屬性,用於指定頁麵解析完成後將執行腳本。此屬性僅適用於外部腳本。

適用的:

<script>

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML defer Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1> 
  
    <h2>  
        HTML defer Attribute 
    </h2> 
  
    <script id="myGeeks"
            type="text/javascript"
            src="my_script.js"
            defer> 
    </script> 
    <br> 
    <button type="button"
            onclick="myFunction()"> 
      Submit 
  </button> 
  
</body> 
  
</html>

外部腳本: my_script.js

function myFunction() { 
    alert("Script works"); 
}

輸出:
點擊前:

點擊後:

支持的瀏覽器:下麵列出了HTML defer Attribute支持的瀏覽器:

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




相關用法


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