$(".fr-sheetbutton-container").click(function(){
//默认所有页签字体颜色为黑色,页签从0开始
$(".fr-sheetbutton-middlepart")[0].style.color="black" ;
$(".fr-sheetbutton-middlepart")[1].style.color="black" ;
//获取当前页签
var a = _g().selectedIndex;
if(a==a){
$(".fr-sheetbutton-middlepart")[a].style.color="red" ;//设置当前页签为红色
}
})