HTML中js输出的四种方式

  • Post author:
  • Post category:其他


<!DOCTYPE html>
<html>
<head>
	<title>js的输出样式</title>
</head>
<body>
	<!-- 使用 window.alert() 写入警告框 -->
	<script>
		window.alert(1+1)
	</script>

	<!-- 使用 document.write() 写入 HTML 输出 -->
	<script>
		document.write(Date())
	</script>

	<!-- 使用 innerHTML 写入 HTML 元素 -->
	<p id='1'></p>
	<script>
		document.getElementById('1').innerHTML = '输出'
	</script>
	
	<!-- 使用 console.log() 写入浏览器控制台 -->
	<script>
		console.log('控制台') // 在控制台F12看输出结果
	</script>
</body>
</html>



版权声明:本文为qq_51971512原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。