サブドメインや「www」を除いた現在のドメイン名を取得する方法
方法1: JavaScriptを使用する場合var currentDomain = window.location.hostname.replace(/^(www\.)?/, ''); console.log(currentDomain);>>More
方法1: JavaScriptを使用する場合var currentDomain = window.location.hostname.replace(/^(www\.)?/, ''); console.log(currentDomain);>>More