过滤表格内容
.filter
放大、缩小字体
初始化
jq处理$(function(){$("span").click(function(){var thisEle = $("#para").css("font-size"); var textFontSize = parseFloat(thisEle , 10);var unit = thisEle.slice(-2); //获取单位var cName = $(this).attr("class");if(cName == "bigger"){ if( textFontSize <= 22 ){textFontSize += 2;}}else if(cName == "smaller"){ if( textFontSize >= 12 ){textFontSize -= 2;}}$("#para").css("font-size", textFontSize + unit);});});