使用Cookie的登陆脚本
为了防止用户直接浏览页面,就要求登陆。这个javascript用于设置登陆和显示用户访问数量的cookie。
特点
- 用于设置和获取cookie的值。
- 使用非常简单。
- 显示用户的访问数量。
预览
代码
Javascript 代码
<!-- Script by hscripts.com -->
<!-- Copyright of HIOXINDIA -->
<!-- More scripts @www.hscripts.com -->
<script type="text/javascript">
var today = new Date();
var expiry = new Date(today.getTime() 365 * 24 * 60 * 60 * 1000);
function getCookieVal (offset)
{
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1) { endstr = document.cookie.length; }
return unescape(document.cookie.substring(offset, endstr));
}
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 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 DeleteCookie (name,path,domain)
{
if (GetCookie(name)) {
document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "")+ "; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
function SetCookie (name,value,expires,path,domain,secure)
{
document.cookie = name + "=" + escape (value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
}
if (GetCookie('user_id') == null)
{
var getName = prompt('Hi ... Ã��Ã�áBienvenido! La primera vez que todos tenemos que a traves de Ã��Ã�él. Por favor escriba su nombre.', '');
var answer = confirm ('Hi... ' +getName+ '. ���ÿQuieres recordar su nombre y apellidos en el registro de futuros?');
if (answer)
{
SetCookie('user_id', (getName != '' ? getName : 'un usuario an���ónimo'), expiry);
SetCookie('hit_count', '1', expiry);
}
document.writeln('<H2>Bienvenida, ' + (getName != '' ? getName : 'un usuario an���ónimo') + '</H2>' + 'Esta es su primera visita.');
}
else
{
var getName = GetCookie('user_id');
var getHits = GetCookie('hit_count');
getHits = parseInt(getHits) + 1;
document.writeln('<H2>Bienvenido de nuevo, ' + getName + '</H2>' + 'Usted ha visitado ' + getHits + ' veces.');
SetCookie('hit_count', '' + getHits + '', expiry);
}
</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;">Ã��Ã�éh</a></div>
用法
- 仅需把这个javacript代码复制并且粘贴到你的HTML页面中,就可使用这个脚本。
- 这个脚本用于设置和获取你登陆的cookie值。
- 也用于设置显示网页用户访问量。
牌照
- 这javascript(如Java脚本拼错)/ HTML代码是GPL授权赋予
- 即对那些谁使用它,因为它是免费使用.
- 免费的,如果你的修改不会删除我们的版权信息和链接.
- 详细许可证资料可在这里找到.
- 你可以购买脚本如果你的要求不符合GPL的许可条款.