Javascript将当前域名添加到URL参数

时间:2019-02-25 00:14:37

标签: javascript

如何使用javascript搜索当前页面的域名,并在重定向之前将其添加到url参数中?

http://redirecturl.com?domain= {domain}

2 个答案:

答案 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