这是我正在使用的笔,下面是 Jquery。因为我想要一个选项卡样式,例如每个按钮都显示所需的内容。
jQuery
$('.content-canvas').find('div').hide();
$('.content-canvas div:first-child').show();
$('.tab-button span:first-child').addClass('active');
$('.tab-button').find('span').click(function(){
$('.tab-button').find('span').removeClass('active');
$(this).addClass('active');
var currentclass=$('.active').attr('class');
$('.content-canvas').find('div').each(function(){
if($(this).attr('class')==currentclass)
{
$('.content-canvas').find('div').hide();
$(this).show();
}
else
{
$(this).hide();
}
});
});