js基本语法 每条语句结束分号结尾 严格区分大小写

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script type="text/javascript">
			alert("劳资跳起来");
			//严格区分大小写 alert不能写成Alert
		/*每条语句结束 ;号结尾 不写浏览器会自动给你加上
		 * 但会占用资源 而且有的时候会报错*/
		</script>
	</head>
	<body>
	</body>
</html>

html中注释用
js跟css和c…一样 用//和/**/

猜你喜欢

转载自blog.csdn.net/qq_45821251/article/details/108434301
今日推荐