jQuery中cookie外掛如何使用
通過cookie外掛可以很便利的儲存使用者的頁面瀏覽記錄,在使用者選擇保護的情況下,還可以儲存使用者的情況
第一步
引入檔案,下載外掛: http://plugins.jquery.com/cookie/
第二步
<script type="text/javascript" src="js/jquery.cookie.js"></script>
第三步
如下例,html寫入你需要使用的輸入框
<div class="banner-bottom2">
<div class="bnr-one">
<div class="bnr-right">
<input class="dat" id="Rname" name="user" type="text" placeholder="暱稱">
<span class="error_news"></span>
</div>
</div>
<div class="bnr-one">
<div class="bnr-right">
<input class="dat" id="phoneNum" name="num" type="text" placeholder="手機號碼">
<span class="error_news"></span>
</div>
</div>
<div class="bnr-one">
<div class="bnr-right">
<input class="dat" id="Repass" name="password" type="password" placeholder="輸入密碼(6~9個字元)">
<span class="error_news"></span>
</div>
</div>
<div class="bnr-one">
<div class="bnr-right">
<input class="dat" id="Rnpass" name="confirm_password" type="password" placeholder="確認密碼">
<span class="error_news"></span>
</div>
</div>
<div class="bnr-btn">
<form>
<input type="submit" id="Rsbt" value="註冊" class="btn">
</form>
</div>
</div>
</div>
</div>
</div>
第四步
如下例,js檔案寫入使用cookie外掛
var again=0;
if($.cookie("username")){
$("#username").val($.cookies("username"))
}
$("#sbtUser").submit(function(){
if($("#save").attr("checked")){
$.cookie("username",$("username").val(),{
path:"/",expires:7
})
}
else{
$.cookie("username",null,{
path:"/"
})
}
return false;
})
第五步
點選submit提交按鈕即可儲存
相關文章
- cookie外掛-jquery.cookie.js介紹CookiejQueryJS
- 手寫jquery.cookie外掛jQueryCookie
- jQuery的Cookie使用jQueryCookie
- JQuery模板外掛-jquery.tmpljQuery
- Headshot外掛如何使用?Headshot外掛使用教程
- jQuery燈箱外掛lightBox使用方法jQuery
- jQuery的外掛列表jQuery
- JQuery蜂巢圖外掛jQuery
- jQuery中的工具與外掛個人分享jQuery
- jQuery外掛擴充套件jQuery套件
- jQuery擴充套件外掛jQuery套件
- jQuery外掛--表格隔行變色jQuery
- jquery複習之路---常用外掛jQuery
- 下拉控制元件jQuery外掛控制元件jQuery
- 基於Bootstrap的jQuery使用者嚮導外掛bootjQuery
- jQuery固定側邊欄外掛ssMenujQuerySSM
- 非常全面的jquery 外掛網站jQuery網站
- jquery寫的ajax分頁外掛jQuery
- Uploadify(JQuery上傳外掛)在asp.net中使用例子jQueryASP.NET
- [譯] HTML5 data 屬性規則使用 jQuery Validate 外掛HTMLjQuery
- 如何在 JMeter 中使用 MQTT 外掛JMeterMQQT
- 建議把datetimePicker改成jquery的外掛jQuery
- Metasploit中aggregator外掛無法使用
- [外掛擴充套件]jQuery二維碼外掛0.2【更新瀏覽器相容】套件jQuery瀏覽器
- HtmlWebpackPlugin外掛和HtmlWebpackInlineSourcePlugin外掛的使用HTMLWebPlugininline
- fastadmin的【外掛管理】外掛使用教程AST
- 外掛如何呼叫本外掛的View?View
- onethink 如何使用外掛 詳細的教程
- 說說如何使用 vue-router 外掛Vue
- 【如何在Intellij IDEA中使用lombok外掛】IntelliJIdeaLombok
- [外掛推薦] 使用 PHPStorm 中的 Laravel Plugin 外掛提升開發效率PHPORMLaravelPlugin
- 如何使用VSCode中的Code Runner外掛執行golang程式碼VSCodeGolang
- 手把手教你開發jquery外掛(二)jQuery
- 手把手教你開發jquery外掛(三)jQuery
- Nuxt Kit 中的外掛:建立與使用UX
- videojs外掛使用IDEJS
- Head 外掛使用
- 如何獲取Cookie並使用Cookie侵入Cookie
- jquery中如何使用事件委託?jQuery事件