貼個代碼在這
<!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://idcbgp.cn/data/jquery-1.8.2.min.js"></script>
? ? ? ? <script src="http://idcbgp.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(?);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? $("#btnSet").bind("click", function () {
? ? ? ? ? ? ? ? ? ? if ($("#chksave").is(":checked")) {
? ? ? ? ? ? ? ? ? ? ? ? ?, {
? ? ? ? ? ? ? ? ? ? ? ? ? ? path: "/", expires: 7
? ? ? ? ? ? ? ? ? ? ? ? })
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? else {
? ? ? ? ? ? ? ? ? ? ? ? ?, {
? ? ? ? ? ? ? ? ? ? ? ? ? ? path: "/"
? ? ? ? ? ? ? ? ? ? ? ? })
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? });
? ? ? ? ? ? });
? ? ? ? </script>
? ? </body>
</html>
2022-04-28
第一個問號是讀取email,第二個是修改email,第三個是刪除email
2022-04-28
什么問題??