QtCreator HTML5链接来自更高目录的javascript文件

时间:2013-09-23 18:49:21

标签: javascript html5 qt-creator

在QtCreator中,HTML5应用程序:

我想在uncle目录中链接一个js文件。

说明:我尝试将“index.html”与

相同的目录中的js文件链接起来
<script src="myjsfile.js" ></script>

并且链接没问题,我的js文件是include。

但是在我当前的应用程序中,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>

如果有人可以帮助我...... [如果问题很愚蠢,请原谅我]

0 个答案:

没有答案