应用JS的三种方式:

第一种:行间引用

主要是用于一些属性的设置和事件监听,如:

<a href="javascript:location.href = document.referrer;">超链接文本< /a >
<button onclick="alert(hello world);">hello world< /button>

第二种:嵌入式

主要是用于script标签中,位置可以很灵活,具体看需要,如:

<script type="text/javascript">
	alert(hello world);
</script>
		

第三种:外链式

主要是用于导入外部js,常见有引入jQuery库;或者统一将javascript脚本放到一个js文件中,使HTML文本更加整洁,如:

<script type="text/javascript" src="./js/jquery.min.js"></script>