「参照元 URL」を使用する方法はありますか。たとえば、example.com からの参照元 Web サイトが検出された場合、ターゲットのランディング ページはページに<div class="helloworld"></div>
表示されているものを非表示にしますか?
$(document).ready(function() {
if(document.referrer.indexOf(window.location.hostname) == "example.com"){
var referrer = document.referrer;
$(".helloworld").hide();
}
});
<div class="helloworld">hidden when example.com is the referring URL</div>
これを書き出すためのjqueryのヘルプ