最近在学习javascript,谁能来解释一下这段html的执行顺序
<!--<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.<html xmlns="http://www.
<head>
<title>javascript test</title>
</head>
<body>
<div style ="color:Red">11111111111111111111111111111111</div>
<script type="text/javascript">
alert("2222222222222222222222222222");
</script>
<div>
33333333333333333333333333333333333333</div>
<script type="text/javascript">
alert("444444444444444444444444444444444");
</script>
<div style="background-color: Blue">
555555555555555555555555555555555555555555555</div>
</body>
</html>