js代碼:
$(function(){
$("#sub").click(function(){
alert($("#uname").val()+' '+$("#upwd").val());
$.cookie("uname",$("#uname").val(),{expires:7});
$.cookie("upwd",$("#upwd").val(),{expires:7});
alert('cookie saved');
});
});
頁面:
<script type="text/javascript" src="jquery/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="jquery/jquery.cookies.2.2.0.min.js"></script>
用戶名:<input type="text" id="uname"/><br>
密 碼:<input type="password" id="upwd"/><br>
<input type="button" id="sub" value="提交" style="margin-left:163px; "/>
能正確彈出uname和upwd值 cookie saved沒有彈出
是代碼問題 還是我導入的cookie插件問題?
沒有正確導入jquery.cookie插件。。毛事jquery.cookie最高版本是1.4吧,你的2.2了?另外一個版本的jquery.cookie.js?
下載這個:https://github.com/carhartl/jquery-cookie