访问者计数/跟踪器

访问者计数器/跟踪器可显示一个指定网页的访问者数量或者点击数。这个javascript在打开具体网页的时候,可显示相应网页的访问数量。

特点

  • 用于知道指定网页的访问数量或者点击数。
  • 使用非常简单。

预览

代码

Javascript 代码
<!-- Script by hscripts.com -->
<!-- Copyright of HIOXINDIA -->
<!-- More scripts @www.hscripts.com -->
<script type="text/javascript">
function ctck()
{
var sds = document.getElementById("dum");
if(sds == null){
alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta.");
}
var sdss = document.getElementById("dumdiv");
if(sdss == null){
alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta.");
}
}
document.onload="ctck()";
function getCookieVal (offset)
{
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name)
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen)
{
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0)
break;
}
return null;
}
function SetCookie (name, value)
{
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (2 < argc) ? argv[2] : null;
var path = (3 < argc) ? argv[3] : null;
var domain = (4 < argc) ? argv[4] : null;
var secure = (5 < argc) ? argv[5] : false;
document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : "");
}
function DisplayInfo()
{
var expdate = new Date();
var visit;
expdate.setTime(expdate.getTime()+(24 * 60 * 60 * 1000 * 365));
if(!(visit = GetCookie("visit")))
visit = 0;
visit ++ ;
SetCookie("visit", visit, expdate, "/", null, false);
document.write("Usted ha visitado esta pagina "+ visit + " veces"); }
document.onload=DisplayInfo();
</script>
<!-- Script by hscripts.com -->

HTML 代码
<div style="font-size: 10px;color: #dadada;" id="dumdiv"> <a href="https://www.hscripts.com" id="dum" style="text-decoration:none;color: #dadada;">Ã��ïÿýÃ��Ã�Ã&copy;h</a></div>
  • 发行日期 - 2011-06-23
  • 获得免费版本无版权链接只 $5/-
  • 关于脚本的定制或者任何脚本的开发,请联系我们, support@hscripts.com

用法

  • 把javascript代码复制并且粘贴到你的HTML页面中,就可使用这个计数器/跟踪器。
  • 清除Cookies,就可使用这个脚本。 这个脚本用于显示指定网页的点击数。

牌照

  • 这javascript(如Java脚本拼错)/ HTML代码是GPL授权赋予
  • 即对那些谁使用它,因为它是免费使用.
  • 免费的,如果你的修改不会删除我们的版权信息和链接.
  • 详细许可证资料可在这里找到.
  • 你可以购买脚本如果你的要求不符合GPL的许可条款.