1

2 つのドメイン名が 1 つの Web サイトに参加します。たとえば、ドメイン A と B は Web サイト 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 に答える