cookie設定入門

2021-10-01 05:26:57 字數 733 閱讀 7808

cookie只用來記錄使用者在**的一些行為或者操作或者資料

**的訪問就是與該**做一次會話(無人跟蹤),而cookie就是會話跟蹤技術

cookie:放在指定的瀏覽器的指定**裡面,如果換個瀏覽器訪問相同的地方,cookie資訊不存在

cookie存在本地瀏覽器中

cookie名稱是唯一的

若名稱已經存在,則會被更新或者覆蓋,若不存在,則建立新的名稱

使用者名稱:

登陸

名稱怎麼取?特殊的符號"=",等號前面是名稱,等號後面是內容

document.cookie = "loginname=" + username;
然後再使用path設定路徑,反斜槓代表**根目錄

document.cookie = "loginname=" + username+";path=/";
當瀏覽器視窗關閉了,cookie資訊就不存在了,所以需要設定到期時間

var date = new date();

date.setdate(date.getdate() + 7)

document.cookie = "loginname=" + username+";path=/"+";expires="+date;

FCKeditor設定入門

程式 dim ofckeditor set ofckeditor new fckeditor ofckeditor.basepath ofckeditor.set default ofckeditor.width 100 ofckeditor.height 400 ofckeditor.value ...

Ubuntu QT配置入門

ubuntu qt配置入門 qt是什麼?qt是乙個跨平台的c gui庫,其官方 為 qt的安裝 安裝方法有兩種 小問題 tips 寫個程式測試一下 include include include include include include sizeof wid bytes.na qobject ...

nginx 配置入門

綠色檔案,無須安裝,直接即可啟動。據我所知,3種啟動途徑,其實都類似 一 雙擊nginx.exe圖示,可見黑視窗一閃而過,啟動完畢。二 命令列到nginx目錄,輸入nginx啟動。注,此方式命令列視窗無任何提示,且被鎖定 三 命令列到nginx目錄,輸入start nginx啟動,此方式不鎖定 啟動...