SOURCE

console 命令行工具 X clear

                    
>
console
<!doctype html>
<html lang="zh-CN">
	<head>
		<title>测试页</title>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no,maximum-scale=1,minimum-scale=1">
	</head>
	<body>
		 <div></div>
	</body>
	<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
	<script>
		$(document).ready(function(){
	    alert("hello,jquery1!");
	    });
	    window.onload = function(){
	        alert("hello,js1!");
	    };
	</script>
</html>