$(".mainnav .nav0").addClass("on"); jQuery(".home_tpxw").slide( {titCell:".hd ul", mainCell:".bd ul",effect:"fold",delayTime:800,interTime:4000,autoPlay:true,autoPage:true}) .find(".hd ul li").empty(); jQuery(".home_news").slide({delayTime:0,triggerTime:0}); jQuery(".home_zwgk_r").slide({delayTime:0,triggerTime:0}); jQuery(".home_zmhd_list").slide({delayTime:0,triggerTime:0}); $(".home_zwgk .menu2 a").after("|"); $(".home_zwgk .menu2 i:last").remove(); $(".home_commonIconlinks").each(function() { $(this).find("li").addClass(function() { return 'li' + $(this).index();}).find("a").wrapInner("").prepend(""); }); $(".home_shtj ul li:first").addClass("li0"); jQuery(".home_ztzl_scroll").slide({mainCell:".bd ul",autoPage:true,effect:"leftLoop",autoPlay:true,vis:4}); jQuery.each(jQuery(".home_ztzl_scroll .bd li img"), function (i, n) { jQuery(n).error(function () { $(this).parents("li").hide(); }); }); $(".home_ajgs_list").load("/sofpro/bmyyqt/lyj/wsbs/home_ajgs.jsp .ajgs_talbe",function(){ $(".ajgs_talbe tr:odd").addClass("trOdd"); }); $(".home_jzxx_list").load("/sofpro/bmyyqt/lyj/zxzx/home_jzxx.jsp?type=1 .jzxx_talbe",function(){ $(".jzxx_talbe tr:odd").addClass("trOdd"); }); $(".home_zxjy_list").load("/sofpro/bmyyqt/lyj/zxzx/home_jzxx.jsp?type=0 .jzxx_talbe",function(){ $(".jzxx_talbe tr:odd").addClass("trOdd"); }); //政声传递 $.ajax({ url:'http://app.gd.gov.cn/xxts/pushinfo_json.php', dataType : "jsonp", jsonp : "pushInfoJsonpCallBack", jsonpCallback:"pushInfoJsonpCallBack", success: function(data){ $.each(data,function(i,json){ if ( i > 6){ return; } var title = json.title; var str1= json.pubDate; //str1=str1.substr(7,10); $("#zscd").append("
  • "+title+""+str1+""); }) } , error:function(){ $("#zscd").append("
  • 对不起,该数据只能在外网获取或暂时显示不出数据
  • "); } }); $.ajax({ url : "http://www.gz.gov.cn/sofpro/gzyyqt/zscd/zscd_json.jsp", dataType : "json", success : function(data) { $.each(data,function(i,json){ var title = json.gztitle; //title = title.length>31?title.substring(0,30)+"...":title; if(i<3){ $("#zscd2").append("
  • "+title+""+json.gzpubdate+"
  • ") } }) } }); //去除要闻摘要空格和标签 //把文本全角转换为半角的函数 function CtoH(obj){   var str=obj.innerHTML;   var result="";   for (var i = 0; i < str.length; i++){    if (str.charCodeAt(i)==12288){     result+= String.fromCharCode(str.charCodeAt(i)-12256);     continue;    }    if (str.charCodeAt(i)>65280 && str.charCodeAt(i)<65375) result+= String.fromCharCode(str.charCodeAt(i)-65248);    else result+= String.fromCharCode(str.charCodeAt(i));   }   obj.innerHTML=result;  } var $NP=$(".home_news .item p"); CtoH($NP[0]); CtoH($NP[1]); String.prototype.trim = function(){ //用正则表达式将前后空格用空字符串替代 var value = this.replace(/(^\s*)|(\s*$)/g, ""); return value.replace(/(^ *)|( *$)/g, ""); } $NP.each(function(i) { var str = $(this).html(); $(this).html(function(){ str = str.replace(/ /ig, ""); str=str.trim(); return str; }) }); //end