在 QtCreator 中,HTML5 应用程序:
我想在叔目录中链接一个js文件。
解释:我试图在同一目录中链接一个 JS 文件,而index.html
不是
<script src="myjsfile.js" ></script>
链接没问题,我的 js 文件包含在内。
但是在我当前的应用程序中,JS 文件处于更高级别,index.html
但是这段代码:
<script src="../js/myjsfile.js" ></script>
我的电脑好像不能用。。。
这是我的文件结构:
- Other files
- html
index.html
- js
entity.js
我的 entity.js 文件:
function hello() {
alert("hello");
}
我的 index.html:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="../js/entity.js" ></script>
</head>
<body>
<button onclick="hello()">X</button>
<h1>Hello</h1>
</body>
</html>
如果有人可以帮助我... [如果问题很愚蠢,请原谅我]