JavaScript で現在アクセス中のドメインによって a href の URL を書き換えるサンプルコード
現在アクセス中のドメインによって a href の URL を書き換える JavaScript のサンプルコードをご紹介します。
var button = document.getElementsByClassName('js-button');
if (button !== null) {
var href = button[0].getAttribute('href');
var domain = document.domain;
if (domain === 'test.example.com') {
href = 'https://another.example.com/target_site';
}
}
詳細は下記 URL をご参照ください。