クッキー無効の場合、1回目の処理が続きます。
<body>内に貼り付けてください。
アクセス回数の表示
<SCRIPT language="JavaScript"> acTimes=getCookie("AC"); if (acTimes=="") { acTimes=1; } document.write(acTimes+"回目のアクセスありがとうございます。"); acTimes++; setCookie("AC",acTimes); function getCookie(key){ tmp=document.cookie+";"; tmp1=tmp.indexOf(key, 0); if(tmp1!=-1){ tmp=tmp.substring(tmp1,tmp.length); start=tmp.indexOf("=",0)+1; end=tmp.indexOf(";",start); return(unescape(tmp.substring(start,end))); } return(""); } function setCookie(key,val) { tmp=key+"="+escape(val)+";"; tmp+="expires=Fri, 31-Dec-2010 23:59:59; "; document.cookie=tmp; } </SCRIPT>