首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

过滤报表内容

2012-10-30 
过滤表格内容.filter放大、缩小字体初始化jq处理$(function(){$(span).click(function(){var thisEle $

过滤表格内容
.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);});});




热点排行