这是一个非常简单的。网页的来源是
<script type="text/javascript" src="/jscript.js"></script>
<html><body>
<h1>It works</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body></html>
我把js放在最开始。
在 jscript.js 中,它是:
<script type="text/javascript">
document.write("test text from bill!");
</script>
但它不显示文本。如果我将js嵌入到html中,它就可以工作。
而且奇怪的是,当我从网络浏览器直接访问 jscript.js 时,内容是这样的:
<script type="text/javascript" src="/jscript.js">
</script><script type="text/javascript">
document.write("test text from bill!");
</script>
有人可以帮忙吗?