1.<meta http-equiv="Pragma" content="no-cache"/> //禁止頁面緩存 2.<script defer src="http://code.jquery.com/jquery-1.10.1.min.js" onload="alert('a')"></scri ...
1.<meta http-equiv="Pragma" content="no-cache"/>
//禁止頁面緩存
2.<script defer src="http://code.jquery.com/jquery-1.10.1.min.js" onload="alert('a')"></script>
//defer是推遲執行,即腳本文件下載好之後,不執行‘a’,而是等全部網頁載入完之後才執行
<script async src="http://code.jquery.com/jquery-migrate-1.2.1.min.js" onload="alert('b')"></script>
//async是非同步執行,即下好腳本文件後,執行‘b’的同時也載入後面的頁面
3.<iframe seamless srcdoc="<h1>hello</h1>" sandbox="allow-scripts" src="https://www.baidu.com"></iframe>(感覺很有用哦)
//iframe為內嵌頁面/框架——seamless表示內嵌的網頁無邊距和邊框;srcdoc出現後,src中內容會被忽略;sandbox是安全限制:a.禁止提交表單 b.禁止運行JS腳本 c.異源限制
註:1、2為頭部代碼