欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

利用cookie记住背景颜色示例代码

程序员文章站 2022-08-26 10:33:36
代码如下:

代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="scripts/jquery-1.10.2.min.js"></script>
<script src="scripts/jquery.cookie.js" type="text/javascript"></script>
<style type="text/css">
#p1{ background-color:red ; width:40px; border:solid 1px yellow ; margin:5px; float:left}
#p2{background-color:yellow ;width:40px; border:solid 1px red; margin:5px; float:left}
#p3{background-color:blue;width:40px; border:solid 1px yellow; margin:5px; float:left}
</style>
<script type="text/javascript">
$(function () {
if ($.cookie("bgcolor")) {
$("body").css("background-color", $.cookie("bgcolor"));
}

$("p").click(function () {
$("body").css("background-color", $(this).css("background-color"));
$.cookie("bgcolor", $("body").css("background-color"), { expires: 7 });
})
})
</script>
</head>
<body>
<p id="p1">红色</p><p id="p2">黄色</p><p id="p3">蓝色</p>
</body>
</html>