Correction status:qualified
Teacher's comments:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h2>php</h2>
<p>jquery</p>
</body>
</html>
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('h2').css('font-size','200%');
});
</script>
<script type="text/javascript">
$(function(){
$('p').append(' hello!');
});
</script>
以上是两种方式
<script type="text/javascript">
window.onload=function(){
alert('hello');
};
</script>
window.onload和$(document).ready(function(){})的区别
在于前者是所有元素全部加载到浏览器才能执行
后者DOM结构加载完毕才能执行,大大缩短了用户等待的时间。