我如何在functions.js文件中获取我网站上的functions.js文件的完整路径?
示例:我的JS文件位于以下文件夹中 /wp-content/themes/example/js/functions.js
我希望通过jQuery拉出完整路径: http://example.com/wp-content/themes/example/js/functions.js
答案 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)