jQuery实现给页面换肤的方法

本文实例讲述了jQuery给页面换肤的方法分享给大家供大家参考。具体分析如下:

页面换肤的效果有不少同学做过,今天在逛blog时也发现一段使用jQuery换肤的代码,贴上与大家分享一下:

rush:js;"> $(document).ready(function(){ $('#styleSwitch .button').bind('click',function(){ $('body').removeClass(); //remove all the other classes $('#styleSwitch .button').removeClass('selected'); $(this).addClass('selected'); switch(this.id){ case 'style1': $('body').addClass('style1'); break; case 'style2': $('body').addClass('style2'); break; case 'style3': $('body').addClass('style3'); break; } return false; }); });

希望本文所述对大家的jQuery程序设计有所帮助。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...