如何使用javascript搜索当前页面的域名,并在重定向之前将其添加到url参数中?
http://redirecturl.com?domain= {domain}
答案 0 :(得分:0)
下面提供了快速简便的答案。但是,如果没有 stackoverflow ,我几乎没有研究能得出相同的结果
let url = `http://redirecturl.com?domain=${document.location.hostname}`;
console.log( url );
答案 1 :(得分:0)
您可以使用简单的location.hostname
:
const redirectURL = `http://redirecturl.com?domain=${location.hostname}`;
console.log(redirectURL);
ES5:
var redirectURL = "http://redirecturl.com?domain=" + location.hostname;
console.log(redirectURL);
注意:上面的返回stacksnippets.net
是因为StackOverflow会运行它们的摘要(如您所见,visit the website