两个域名加入一个网站。 例如,域A和B链接到网站C.
在contact.php页面, 当用户查看域A时, 我想在contact.html中隐藏一些内容。 例如,图像,文字等......
但是对于域B,他可以看到所有的contact.php页面。
答案 0 :(得分:0)
此演示将在控制台中记录网站的当前域名
var current_domain = document.location.hostname;
console.log(current_domain);
if (current_domain == "example.com") {
//code for hiding stuff goes here
} else if (current_domain == "example21.com") {
//code for that page here
}