请看下面两段代码有什么区别:
1.==============a1.html==========================
<script >
window.location.href="http://phpor.net";
alert(‘aa’);
</script>
2.=============a2.html===========================
<script >
window.location.href="http://phpor.net";
</script>
<script >
alert(‘aa’);
</script>
访问a1.html ,看不到alert
访问a2.html ,能看到alert
这就可以说明一些script标签的作用