html里面怎么使用外部的js?
js的使用方式:
1、行內(nèi)js
<button type="button" οnclick="javascript:alert('hello js.')">Click Me!</button>
2、內(nèi)部js
<script type="text/javascript">
//聲明一個函數(shù)(整個文檔都可以使用)
function hello() {
console.log('hello js.')
}
</script>
3、外部js
通過cdn引入js公共lib,比如jquery
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
或者引入自己寫的js
<script src="hello.js"></script>
也可以通過document.write動態(tài)引入js,比如:
document.write('<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js" type="text/javascript" ></script>');