0

If i have a file system like:

project -> public -> js -> myfile.js

If i call getScript() in myfile.js where does it look at first? Is this generally true for other things?

For example if I call getScript("myotherfile.js") and myotherfile.js is in the js folder would that be sufficient to access myotherfile.js?

Does the getscript call from my html document or myfile.js?

4

1 回答 1

2

路径将从浏览器中显示的 url 中获取。

IE)

如果站点 url 是example.com/test1/test2/并且调用是从此页面进行的,并且如果您/在 js 文件 url 前面提到,那么最终结果将是example.com/myotherfile.js. 如果你没有放任何斜线,那么它会像example.com/test1/test2/myotherfile.js.

注意:我不确定我的问题是否正确。

欲了解更多信息,请继续阅读absolute pathsrelative paths

链接供参考

于 2015-01-05T04:46:58.673 回答