1.1在index.html中调用外部JavaScript文件function.js,运行index.html文件
function.js
document.write("欢迎来到JavaScript的世界!");
index.html
<script src="function.js" language="javascript"></script>
综合应用:制作一个html页面,在页面中使用javascript脚本输出一个“您好javascript”字符串
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>使用javascript输出“您好javascript"字符串</title>
<script type="text/javascript">document.write('您好javascript');</script>
</head>
<body>
</body>