更新時(shí)間:2022-06-20 09:26:54 來(lái)源:動(dòng)力節(jié)點(diǎn) 瀏覽2551次
通過(guò)設(shè)置過(guò)期日期并將過(guò)期日期保存在 cookie 中,將 cookie 的生命周期延長(zhǎng)到當(dāng)前瀏覽器會(huì)話之外。這可以通過(guò)將 'expires' 屬性設(shè)置為日期和時(shí)間來(lái)完成。
您可以嘗試運(yùn)行以下示例將 cookie 的到期日期設(shè)置為 1 個(gè)月
<html>
<head>
<script>
<!--
function WriteCookie() {
var now = new Date();
now.setMonth( now.getMonth() + 1 );
cookievalue = escape(document.myform.customer.value) + ";"
document.cookie="name=" + cookievalue;
document.cookie = "expires=" + now.toUTCString() + ";"
document.write ("Setting Cookies : " + "name=" + cookievalue );
}
//-->
</script>
</head>
<body>
<form name="myform" action="">
Enter name: <input type="text" name="customer"/>
<input type="button" value="Set Cookie" onclick="WriteCookie()"/>
</form>
</body>
</html>
0基礎(chǔ) 0學(xué)費(fèi) 15天面授
有基礎(chǔ) 直達(dá)就業(yè)
業(yè)余時(shí)間 高薪轉(zhuǎn)行
工作1~3年,加薪神器
工作3~5年,晉升架構(gòu)
提交申請(qǐng)后,顧問(wèn)老師會(huì)電話與您溝通安排學(xué)習(xí)