gpt4 book ai didi

JavaScript 链接点击计数器

转载 作者:行者123 更新时间:2023-11-30 06:07:42 26 4
gpt4 key购买 nike

我需要一个脚本来计算我网站上的链接点击次数并将报告计入平面文件/excel。

最佳答案

在这种情况下,使用像 jQuery 这样的 Javascript 框架是明智的。

请注意,您不能将数据保存到客户端计算机上的文件中。相反,您可以对服务器执行 AJAX,并通过服务器上的 SSI 将其保存到数据库/excel/文件中,无论数据存储是什么。

我的演示将使用 jQuery , jQuery Cookie PluginPHP :

计数检测.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>

关于JavaScript 链接点击计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3114969/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com