js的使用方式:
1、行内js
<button type=”button” οnclick=”javascript:alert(‘hello js.’)”>Click Me!</button>
2、内部js
<script type=”text/javascript”>
//声明一个函数(整个文档都可以使用)
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动态引入js,比如:
document.write(‘<script src=”https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js” type=”text/javascript” ></script>’);