获取JS文件的URL

时间:2013-05-29 12:13:38

标签: jquery path

我如何在functions.js文件中获取我网站上的functions.js文件的完整路径?

示例:我的JS文件位于以下文件夹中 /wp-content/themes/example/js/functions.js

我希望通过jQuery拉出完整路径: http://example.com/wp-content/themes/example/js/functions.js

3 个答案:

答案 0 :(得分:1)

window.location.origin将提供网址的域名部分。然后你可以追加你的路径。

https://developer.mozilla.org/en-US/docs/Web/API/window.location

例如:

// Prints "http://stackoverflow.com"
console.log(window.location.origin);

答案 1 :(得分:0)

您可以使用document.location.hostname返回主机名。例如,如果您在SO上运行它,它的值将是stackoverflow.com

答案 2 :(得分:0)

您也可以使用:

<强>警报(document.URL);

Get current URL in web browser