Quantcast
Channel: w3cplus
Viewing all articles
Browse latest Browse all 1557

jQuery给页面换肤代码

$
0
0

给页面换肤的效果有不少同学做过,今天在逛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;
	});
});

 


Viewing all articles
Browse latest Browse all 1557

Trending Articles