我需要一个脚本来计算我网站上的链接点击次数并将报告计数到平面文件/excel。
问问题
4698 次
1 回答
1
在这种情况下,使用像 jQuery 这样的 Javascript 框架是明智的。
请注意,您不能将数据保存到客户端计算机上的文件中。相反,您可以对服务器执行 AJAX,并通过服务器上的 SSI 将其保存到数据库/excel/文件中,无论有什么数据存储。
我的演示将使用jQuery、jQuery Cookie 插件和PHP:
计数检测.js
jQuery(function(){
$("a").click(function{
var cookiename = 'linkcounter';
if($.cookie(cookiename) == null){
$.cookie(cookiename, 0);
}
$.cookie(cookiename, $.cookie(cookiename)+1);
});
});
索引.php
<?php
session_start();
$counter_file = 'counter';
if(!file_exists($counter_file)){
file_put_contents($counter_file, 0);
}
$counts = (int)file_get_contents($counter_file);
file_put_contents($counter_file, $counts++);
// you can use $counts if you want to display it on the page.
?><!DOCTYPE html>
<html>
<head>
<title>Link Click Counter Test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script type="text/javascript" src="countdetect.js"></script>
</head>
<body>
<a href="http://www.google.com/"></a><br />
<a href="<?php echo $_SERVER['PHP_SELF']; ?>"></a><br />
Link clicks: <?php echo $counts; ?>
</body>
</html>
于 2010-06-25T01:51:39.853 回答