


Detailed example of jQuery implementing skin-changing function based on cookies
This article mainly introduces jQuery's skin-changing function based on cookies. It analyzes the operation method of jQuery using cookies to record and read user information to implement page styles based on specific examples. Friends who need it can refer to it. I hope it can help everyone.
The example in this article describes how jQuery implements the skin-changing function based on cookies. Share it with everyone for your reference, the details are as follows:
Skin change, you can always see these two words (also called skin) when you use QQ, browser, Kugou and other software. However, skin changing can indeed solve the tastes of many people. Skin changing may seem like an insignificant function, but it can actually attract users. Okay, without further ado, let’s start class.
Attached is my code:
<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>cookie的使用</title> <script type="text/javascript" src="js/jquery-1.8.3.js"></script> <style> .huanFu{ float:right; } .huanFu ul li{ width:30px;height:30px; list-style:none; margin:0 5px; float:left; cursor:pointer; border:1px solid #000; } .fu1{background-color:#F00;} .fu2{background-color:#0F0;} .fu3{background-color:#00F;} .fu4{background-color:#FF0;} .huanFu ul li.select{border:3px solid #000;margin-top:-3px;} </style> <script> $(function(){ var cookieClass=getCookie('class');//读取本地的Cookie if(cookieClass){ $("body").attr("class",cookieClass);//把页面的背景恢复成Cookie保存的颜色 }else{ $("body").attr("class","fu1"); } $(".huanFu ul li").on("click",function(){ $(this).addClass("select").siblings().removeClass("select");//标示出选中的样式 var fuName=$(this).attr("fuName");//取得class名。讲解:起了一个fuName属性,在里面存了fu1,现在取出来而已 $("body").attr("class",fuName);//改变body的class属性来达到背景换色的效果 function SetCookie(name,value,day){//三个传值,名字、值、保存天数 var exp = new Date();//取得本机当前时间(含日期) exp.setTime(exp.getTime() + day*24*60*60*1000);//把天数变成毫秒保存起来 document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();//以name=fu1;expires=Date {Thu Jun 26 2014 23:23:25 GMT+0800}这一长串的字符串保存到本机的cookie中 } SetCookie("class",fuName,7);//设置Cookie过程 }); function getCookie(name){//读取本地的Cookie过程 var nameTit=name+"=";//此时的name值就是"class",nameTit="class=" var ca=document.cookie.split(';');//读取本地cookie的内容是"xxx.xxx;xxx.xxx",所以我们去掉';'后,它会以数组的形式保存入ca内。 for(var i=0;i<ca.length;i++){//循环ca数组 var c=ca[i]; while(c.charAt(0)==' '){//如果开头第一个字符是空格的话,读取就从第二位到最后一位 c=c.substring(1,c.length); } if(c.indexOf(nameTit)==0){//判断是否存在,并是否第一位开始的"class=" return c.substring(nameTit.length,c.length);//取得class=fu1中的"fu1" } return null; } } }); </script> </head> <body class="fu1"> <p class="huanFu"> <ul> <li class="fu1" fuName="fu1"></li> <li class="fu2" fuName="fu2"></li> <li class="fu3" fuName="fu3"></li> <li class="fu4" fuName="fu4"></li> </ul> </p> </body> </html>
After you understand the above code, copy it to your editing software to see the effect. Click the color block in the upper right corner, and the background color of the page changes to the color corresponding to the color block. Then close your browser and open the page again. Are you surprised to find that the color is the color you last closed the browser. I have added corresponding comments in the code. Although the script code is long, it is actually very easy to understand. It uses the browser's cookie to save your value and record your color selection at all times.
Related recommendations:
jQuery+jQuery.cookie.js plugin to implement the skin-changing function sample code
How to implement Web page skin change effect
Dynamic loading of js files and css files in the web page means skin change
The above is the detailed content of Detailed example of jQuery implementing skin-changing function based on cookies. For more information, please follow other related articles on the PHP Chinese website!

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver Mac version
Visual web development tools
