JavaScript使用方式|引用方式

呼延渝
2023-12-01

引用方式:行内样式、内部样式、外链样式
1、在中引用(内部样式、外链样式)
内部样式:

<head>
	<script type="text/javascript">
	</script>
</head>

外链样式:

<head>
	<script src="js/index.js"></script>
</head>

2、在中引用(行内样式,外链样式)
行内样式:

<body>
	<script>
	</script>
</body>

外链样式:

<body>
	<script src="js/index.js"></script>
</body>
 类似资料: