- 时间:2021-02-26 15:33 编辑: 来源: 阅读:
- 扫一扫,手机访问
摘要:jquery cookie实现的简单换肤功能适合小网站
前段时间试着使用jquery cookie的时候,做了一个简单的换肤功能,只适合小网站并且代码低级。
首先引入jquery和cookie插件
[url=__PUBLIC__/css/basic2.css]
网页中的body部分准备几个button按钮用于触发jquery
<button>风格一</button><button>风格二</button>
jquery代码
[url=http://plugins.jquery.com/cookie/]点击获取jquery cookie插件[/url]
[url=http://jquery.com/]点击获取jquery[/url]或者使用jquery在谷歌或者微软的托管
Microsoft CDN:
-------------------------------------------------------------------------------
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
Google CDN:
--------------------------------------------------------------------------------
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"> </script>