• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • 用JavaScript查看一些用戶信息

    發表于:2007-06-21來源:作者:點擊數: 標簽:
    1、檢測瀏覽器版本 Script Language=" Java Script" !-- document.write(navigator.appVersion) //-- /script 2、記住來訪次數 SCRIPT LANGUAGE="JavaScript" !-- var caution = false function setCookie(name, value, expires, path, domain, secure) { va

       
      1、檢測瀏覽器版本

    <Script Language="JavaScript">
    <!--
    document.write(navigator.appVersion)
    //-->
    </script>
    2、記住來訪次數

    <SCRIPT LANGUAGE="JavaScript">
    <!--

    var caution = false
    function setCookie(name, value, expires, path, domain, secure) {
        var curCookie = name + "=" + escape(value) +
            ((expires) ? "; expires=" + expires.toGMTString() : "") +
            ((path) ? "; path=" + path : "") +
            ((domain) ? "; domain=" + domain : "") +
            ((secure) ? "; secure" : "")
        if (!caution || (name + "=" + escape(value)).length <= 4000)
            document.cookie = curCookie
        else
            if (confirm("Cookie exceeds 4KB and will be cut!"))
                document.cookie = curCookie
    }

    function getCookie(name) {
        var prefix = name + "="
        var cookieStartIndex = document.cookie.indexOf(prefix)
        if (cookieStartIndex == -1)
            return null
        var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
        if (cookieEndIndex == -1)
            cookieEndIndex = document.cookie.length
        return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
    }

    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 fixDate(date) {
        var base = new Date(0)
        var skew = base.getTime()
        if (skew > 0)
            date.setTime(date.getTime() - skew)
    }

    var now = new Date()
    fixDate(now)
    now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000)
    var visits = getCookie("counter")
    if (!visits)
        visits = 1
    else
        visits = parseInt(visits) + 1
    setCookie("counter", visits, now)
    document.write("您已來這兒 " + visits + "次.")
    // -->
    </SCRIPT>
    3、你從哪個網頁訪問過來

    <Script Language="JavaScript">
    document.write(document.referrer)
    </SCRIPT>
    4、最后更新日期

    <script language="JavaScript">
    <!--hide script from old browsers
    document.write("This page has been updated: " + document.lastModified + "")
    // end hiding -->
    </script>
    5、輸入姓名至歡迎詞

    把以下代碼放在<head></head>之間:
    <script>
    var name=prompt("YOUR PROMPT MESSAGE","ANY INITAL VALUE")
    </script>
    </font>

    把以下代碼放在HTML文件中:
    <center>
    <font color=green>
    <script>document.write(name);</script>
    </font>
    其它要輸出信息...</center>
    </font>
    6、記住來訪時間

    <HTML>
    <HEAD>
    <TITLE>Name - Visits - Last Visit</TITLE>

    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    var expDays = 30;
    var exp = new Date();
    exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
    function Who(info){
    var VisitorName = GetCookie('VisitorName')
    if (VisitorName == null) {
    VisitorName = prompt("您的尊姓大名:");
    SetCookie ('VisitorName', VisitorName, exp);
    }
    return VisitorName;
    }
    function When(info){
    var rightNow = new Date()
    var WWHTime = 0;
    WWHTime = GetCookie('WWhenH')
    WWHTime = WWHTime * 1
    var lastHereFormatting = new Date(WWHTime);
    var intLastVisit = (lastHereFormatting.getYear() * 10000)+
      (lastHereFormatting.getMonth() * 100) + lastHereFormatting.getDate()
    var lastHereInDateFormat = "" + lastHereFormatting;
    var dayOfWeek = lastHereInDateFormat.substring(0,3)
    var dateMonth = lastHereInDateFormat.substring(4,11)
    var timeOfDay = lastHereInDateFormat.substring(11,16)
    var year = lastHereInDateFormat.substring(23,25)
    var WWHText = dayOfWeek + ", " + dateMonth + " at " + timeOfDay
    SetCookie ("WWhenH", rightNow.getTime(), exp)
    return WWHText
    }
    function Count(info){
    var WWHCount = GetCookie('WWHCount')
    if (WWHCount == null) {
    WWHCount = 0;
    }
    else{
    WWHCount++;
    }
    SetCookie ('WWHCount', WWHCount, exp);
    return WWHCount;
    }
    function set(){
    VisitorName = prompt("Who are you?");
    SetCookie ('VisitorName', VisitorName, exp);
    SetCookie ('WWHCount', 0, exp);
    SetCookie ('WWhenH', 0, exp);
    }
    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 = (argc > 2) ? argv[2] : null; 
    var path = (argc > 3) ? argv[3] : null; 
    var domain = (argc > 4) ? argv[4] : null; 
    var secure = (argc > 5) ? 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 DeleteCookie (name) { 
    var exp = new Date(); 
    exp.setTime (exp.getTime() - 1); 
    var cval = GetCookie (name); 
    document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
    }
    // End -->
    </SCRIPT>

    </HEAD>

    <BODY BGCOLOR=#ffffff vlink=#0000ff>

    <!-- Demonstration -->
    <CENTER>
    <SCRIPT LANGUAGE="JavaScript">
    if (Count()==0)
    {
    document.write("您好!" + Who() + ". 您首次來這兒,請多提寶貴意見.");
    }
    else
    {
    document.write("您好!" + Who() + ". 您已來這兒 " + Count() + "次了,最后一次在 " + When() +".");
    }
    </SCRIPT>
    </CENTER>
    </BODY>
    </HTML>

    原文轉自:http://www.kjueaiud.com

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>