如何跟踪点击链接的时间?

时间:2015-07-30 05:21:37

标签: javascript html point

在我的网站上,我想跟踪AD点击并奖励用户。基本上是PayPerClick。当用户单击AD或链接时,我想增加他们拥有的点数。有一种简单的方法可以做到这一点吗?

我猜我将不得不使用javascript。

dbeas.com

1 个答案:

答案 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;
&#13;
&#13;