<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> ? ?<head> ? ? ? ?<title>cookie插件</title> ? ? ? ?<link href="style.css" rel="stylesheet" type="text/css" /> ? ? ? ?<script type="text/javascript" src="http://www.xianlaiwan.cn/data/jquery-1.8.2.min.js"></script> ? ? ? ?<script src="http://www.xianlaiwan.cn/data/jquery.cookie.js" type="text/javascript"></script> ? ?</head> ? ? ? ?<body> ? ? ? ?<div id="divtest"> ? ? ? ? ? ?<div class="title"> ? ? ? ? ? ? ? ?<span class="fl">cookie插件</span> ? ? ? ? ? ? ? ?<span class="fr"> ? ? ? ? ? ? ? ? ? ?<input id="btnSet" type="button" value="設置" /> ? ? ? ? ? ? ? ?</span> ? ? ? ? ? ?</div> ? ? ? ? ? ?<div class="content"> ? ? ? ? ? ? ? ?<span class="fl">郵箱:</span><br /> ? ? ? ? ? ? ? ?<input id="email" name="email" type="text" /><br /> ? ? ? ? ? ? ? ?<input id="chksave" type="checkbox" />是否保存郵箱 ? ? ? ? ? ?</div> ? ? ? ?</div> ? ? ? ? ? ? ? ?<script type="text/javascript"> ? ? ? ? ? ?$(function () { ? ? ? ? ? ? ? ?if ($.cookie("email")) { ? ? ? ? ? ? ? ? ? ? ?$("#email").val($.cookie("email")); ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?if($.cookie("che")){ ? ? ? ? ? ? ? ? ? ?$("#chksave").attr("checked",true); ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?$("#btnSet").bind("click", function () { ? ? ? ? ? ? ? ? ? ?if ($("#chksave").is(":checked")) { ? ? ? ? ? ? ? ? ? ? ? ?$.cookie("email",$("#email").val(), { ? ? ? ? ? ? ? ? ? ? ? ? ? ?path: "/", expires: ?7 ? ? ? ? ? ? ? ? ? ? ? ?}), ? ? ? ? ? ? ? ? ? ? ? ?$.cookie("che",true, { ? ? ? ? ? ? ? ? ? ? ? ? ? ?path: "/", expires: ?7 ? ? ? ? ? ? ? ? ? ? ? ?}) ? ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?else { ? ? ? ? ? ? ? ? ? ? ? ? ?$.cookie("email",null, { ? ? ? ? ? ? ? ? ? ? ? ? ? ?path: "/" ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}), ? ? ? ? ? ? ? ? ? ? ? ?$.cookie("che",null, { ? ? ? ? ? ? ? ? ? ? ? ? ? ?path: "/" ? ? ? ? ? ? ? ? ? ? ? ?}) ? ? ? ? ? ? ? ? ? ?} ? ? ? ? ? ? ? ?}); ? ? ? ? ? ?}); ? ? ? ?</script> ? ?</body></html>
- 2 回答
- 0 關注
- 1470 瀏覽
添加回答
舉報
0/150
提交
取消