我正在尝试在Firefox 13.0.1中测试以下代码,但它无法正常运行:
<!DOCTYPE html>
<html>
<head>
<title>Exercise 1</title>
<script type="text/javascript" async src="example1.js"></script>
<script type="text/javascript" async src="example4.js"></script>
<script type="text/javascript" src="example3.js"></script>
</head>
<body>
<p>Hello world</p>
</body>
</html>
// example1.js:
alert("I'm the example 1");
// example3.js
alert("I'm the example 3");
// example4.js
alert("I'm the example 4");
当我打开包含上述html代码的文件时,会发生以下情况:
我编辑了我遵循的流程
如果我在执行完最后一个脚本后在Firefox中打开Firebug,我会发现浏览器没有收到body元素。
我不知道我的代码是否正确或是Firefox的错误。
谢谢。