$(function(){ $.geturlparam = function (name) { var reg = new regexp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeuri(r[2]); return null; } var style = $.geturlparam('style'); var spans = $('.f_l'); $.each(spans,function(){ if($(this).find('a').text()==style) { $(this).addclass('acheng'); $('.position').text(style); } }) var mystyle=getquerystring("style"); if(mystyle !=null && mystyle.tostring().length>1){ $('.tit').text(mystyle); } }) //截取url的参数 function getquerystring(name){ var reg = new regexp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null) return decodeuri(r[2]); return null; }