制作Landing Page常用的JS代码

Affiliate Marketing经常需要用到Landing Page,无论是百度推广、Google Adwords,还是PPV、media buy。就我个人经验,一个好的landing page比direct link或者是差的landing page,转化率至少要提高一倍。

下面是在制作landing page过程中,经常会用到的几个JS代码。转自于网络,原始出处不详。

1 – Geo Targeting – 根据访客的ip判断访客的地理位置。

用这个功能好的好处在于,比如对于一个交友的Landing Page可以直接在标题中写出访客的城市,告诉访客有更多的来自改城市的人等着好你聊天,这样让访客感觉起来好像专门为他建立的网页一样,转化为有很大的提高。

geo target JS代码如下:

<p>Criminal Justice Career opportunities available in <script language=”JavaScript” type=”text/javascript” src=”http://j.maxmind.com/app/geoip.js”></script>
<script language=”JavaScript” type=”text/javascript”>document.write(geoip_region_name());</script></p>

2 — 添加动态的网页标题 title

title 是显示在浏览器窗口的文字,设置动态的title可以更好的吸引读者的眼球。

<script type=”text/javascript”>
function titleblink(bla) {
var title1=”Congratulations!”;
var title2=”You Could Win an Apple iPad 2 and iPhone 4!”;
var onoff=bla; if(onoff==0){newtitle=title1; onoff=1;}else if(onoff==1){newtitle=title2; onoff=0;}
document.title=newtitle;
timer=window.setTimeout(“titleblink(“+onoff+”)”,750);
} titleblink(0);
</script>

首先设置两个title字符串 title1,title2, 然后调用document.title 写出标题。

window.setTimeout() 是个按照给定时间重复执行某个函数的函数。

3 — 关闭确认功能

当访客要关闭正在浏览的网站,是会弹出一个确认框,告知访客是否要确认离开改页面。同时也可以在这个时候加入运行别的代码,比如跳转页面到offer页面。

代码如下:

<script type=”text/javascript” language=”javascript”> var areYouReallySure = false;
var nomsg = false ;
if (!nomsg) {nomsg = false};
function areYouSure() {
if (!areYouReallySure && !nomsg) {
areYouReallySure = true;
location.href=”这里写上你的offer连接”;
return “WAIT! \n\nYou Can File Your Federal Taxes For Free And Maximize Your Refund – Guaranteed! \n\nClick CANCEL in this window to get TurboTax Federal Free Edition!”;
}
}

当用户正常点击了你想要的结果而跳转的时候,而不是关闭该页面,如果还弹出确认框就会丢失一部分客户。

这个时候只要在你想要用户跳转的连接上加上 onmousedown=”areYouReallySure=true” 就可以了

如: <a href=”” onmousedown=”areYouReallySure=true”>button</a>

本文链接: https://www.168itw.com/notes/landing-page-js/
转载请注明转载自:168itw

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注