狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

JavaScript操作cookie

admin
2010年9月2日 10:11 本文熱度 3580

寫入和讀取Cookie是一種常見的功能,可惜JavaScript對(duì)此的直接支持并不算完善,下面是幾個(gè)操作Cookie的函數(shù),用起來還是蠻方便的。


// utility function to retrieve an expiration date in proper


// format; pass three integer parameters for the number of days, hours,


// and minutes from now you want the cookie to expire (or negative


// values for a past date); all three parameters are required,


// so use zeros where appropriate


function getExpDate(days, hours, minutes) {


    var expDate = new Date( );


    if (typeof days == "number" && typeof hours == "number" &&


        typeof hours == "number") {


        expDate.setDate(expDate.getDate( ) + parseInt(days));


        expDate.setHours(expDate.getHours( ) + parseInt(hours));


        expDate.setMinutes(expDate.getMinutes( ) + parseInt(minutes));


        return expDate.toGMTString( );


    }


}


  


// utility function called by getCookie( )


function getCookieval_r(offset) {


    var endstr = document.cookie.indexOf (";", offset);


    if (endstr == -1) {


        endstr = document.cookie.length;


    }


    return unescape(document.cookie.substring(offset, endstr));


}


  


// primary function to retrieve cookie by name


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_r(j);


        }


        i = document.cookie.indexOf(" ", i) + 1;


        if (i == 0) break;


    }


    return "";


}


  


// store cookie value with optional details as needed


function setCookie(name, value, expires, path, domain, secure) {


    document.cookie = name + "=" + escape (value) +


        ((expires) ? "; expires=" + expires : "") +


        ((path) ? "; path=" + path : "") +


        ((domain) ? "; domain=" + domain : "") +


        ((secure) ? "; secure" : "");


}


  


// remove the cookie by setting ancient expiration date


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";


    }


}


將上面的幾個(gè)js命名為cookie.js,下面演示其基本用法


<script type="text/javascript" src="cookie.js"></script>


 


<script type="text/javascript">


   function foo()


   {


         var name = document.getElementByIdx("name").value;


         if(name)


         {


              setCookie("name",name);


         }


         document.getElementByIdx("show").innerHTML+=("NEWEST NAME :"+ getCookie("name") + "<br>");


   }


</script>


Chapter 1.9 example


<br>


<input type="text" id="name" size="20" />


<input type="button" value="setCookie" onclick="foo()" />


<div id="show"></div>


可以同時(shí)開兩個(gè)窗口看看,輸入框不輸入值,按按鈕相當(dāng)于察看當(dāng)前cookie。


該文章在 2010/9/2 10:11:07 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved