jQuery实现给页面换肤的方法

  作者:bea

本文实例讲述了jQuery给页面换肤的方法。分享给大家供大家参考。具体分析如下: 给页面换肤的效果有不少同学做过,今天在逛blog时也发现一段使用jQuery换肤的代码,贴上与大家分享一下: $(document).ready(function(){ $('#styleSwitch .button').bind('click', function(){ $('body').removeClass(); //remove all the other class
本文实例讲述了jQuery给页面换肤的方法。分享给大家供大家参考。具体分析如下:
给页面换肤的效果有不少同学做过,今天在逛blog时也发现一段使用jQuery换肤的代码,贴上与大家分享一下:


$(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程序设计有所帮助。


有用  |  无用

猜你喜欢