1

两个域名加入一个网站。例如,域 A 和 B 与网站 C 链接。

在contact.php 页面,当用户使用域A 查看时,我想在contact.html 中隐藏一些内容。例如,图像,文字等...

但是使用域B,他可以看到所有的contact.php 页面。

4

1 回答 1

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
}
于 2013-07-28T16:38:50.797 回答