在我的网站上,我想跟踪AD点击并奖励用户。基本上是PayPerClick。当用户单击AD或链接时,我想增加他们拥有的点数。有一种简单的方法可以做到这一点吗?
我猜我将不得不使用javascript。
dbeas.com
答案 0 :(得分:0)
以下代码将帮助您入门。
查看此fiddle。
以下是摘录。
var points = 0;
$("a.ad").click(function() {
points++;
//send point to server
//tell the user about the increase in points
alert(points);
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a class='ad' target='_blank' href='http://www.google.com'> This is Ad</a>
<br>
<a target='_blank' href='http://www.google.com'> This is Not an Ad</a>
&#13;