内部引用:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
document.write("Hello World!");
</script>
</head>
</html>
外部引用:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/hello.js">
</script>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
document.write("Hello World!");
</script>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/hello.js">
</script>
</head>
</html>