/*var address = "ä¸é™"; var tp = "ä¸é™"; var tp0 = "ä¸é™"; var isAll = true; var name = null; var typeName = "花木介ç»"; var pages = 0; var storage = window.sessionStorage; /!** * ç”±encyclopedia.jsä¸getContent(str)方法跳至æ¤å¹¶èŽ·å–æ¤å‚æ•° * contentNewsId傿•°ç”¨äºŽèŽ·å–æ–°é—»å†…容 * @type {any} *!/ var contentNewsId = storage["contentNewsId"]; var addressActive = storage["addressActive"]; console.log("contentNewsId:="+contentNewsId+"----"+"addressActive:="+addressActive);*/ $(function () { UrlSearch(); $(".logo button").click(function () { var content = $("#Sou").val(); var type = $("#selectType").val(); if(content.trim().length<2){ layer.tips("请至少输入两个å—符","#Sou"); }else{ if(type=="供应"){ window.location.href="/spzs/?search="+content; }else if(type=="采è´"){ window.location.href="/syjh/qiugou.htm?search="+content; }else if(type=="ä¼ä¸š"){ window.location.href="/qyml/?search="+content; }else if(type=="资讯"){ window.location.href="/hyxx/informationSearch.html?search="+content; }else if(type=="百科"){ window.location.href="/qyfw/encyclopediaSearch.html?search="+content; } } }); $(".address").click(function(){ window.location.href="/qyfw/encyclopediaThreePage.html?type="+$(this).html(); }); var newsid = parseInt(window.newsid); if(!newsid){ var weburl = window.location.href; newsid = weburl.substring(weburl.lastIndexOf('/')+1).split(".")[0]; } newsid = parseInt(newsid); if(newsid){ addSeeTime(); var info = getInfo(newsid); if(info!=null){ console.log(info); document.title=info.title; if(info.kwd){ $("meta[name='keywords']").attr('content',info.kwd); } if(info.des){ $("meta[name='description']").attr('content',info.des); } $("#content_title").html(info.title); if(info.path){ $(".title_img").attr("src",formatImgUrl(info.path)) }else { $(".title_img").hide(); } if(info.content==null||info.content==""){ $("#content_content").html("æ— è¯¦ç»†å†…å®¹"); }else{ $("#content_content").html(info.content.replace(/{{/g,'<').replace(/}}/g,'>').replace(/amp;/g,'')); } $("#content_title").css({"text-align":"center","font-size":".36rem"}); $("#content_content").css({"font-size":".16rem","line-height":"30px"}); $(".list_01").show(); var typename = info.typename; if(typename == "法律咨询"||typename =="è§„ç« åˆ¶åº¦"){ typename = "法律法规"; } else if (typename == "åˆåŒæ ·æœ¬"){ typename = "åˆåŒèŒƒæ–‡"; } $("#source").html(info.source?'æ¥æºï¼š'+info.source:'æ¥æºï¼šç½‘络'); $("#date").html(info.dateandtime?'日期:'+info.dateandtime.slice(0,10):'未知'); $("#type").html('分类:'+typename); $("a[class='address']").each(function(index, result){ if($(this).html() == typename){ $(this).attr("class", "address active"); } }); }else{ window.location.href="/qyfw/"; } }else{ window.location.href="/qyfw/"; } /* // //ä¿®æ”¹åˆ†ç±»æ ‡é¢˜é¢œè‰² if(addressActive != null && addressActive != undefined && addressActive != ""){ $("a[class='address']").each(function(index, result){ if($(this).html() == addressActive){ $(this).attr("class", "address active"); return; } }) } // //获å–详细内容 if(contentNewsId != null && contentNewsId != undefined && contentNewsId != ""){ getContent(contentNewsId) } // /!** // * è®¾ç½®æœ¬åœ°ç¼“å˜ // *!/ $(".address").click(function(){ typeName = $(this).html(); storage["url"] = $(this).html(); // 修改颜色 $(this).parent().siblings().children().css("color", "#333333"); $(this).css("color", "#ff774d"); //èŽ·å–æ•°æ® console.log(typeName); getInfo(typeName,0); getTotal(typeName); })*/ }); /* /!** * 获å–详细内容 *!/ function getContent(str){ if(str != ''){ $.ajax({ url: url+"/qyfw/commerce/commercechaxunid", data: { newsid: str }, type: "get", dateType: "json", async: false, success: function success(response, status, xhr) { console.log(response); if(response.length > 0){ $(".list").attr("style","display: none"); $(".page").attr("style","display: none"); $(".list_01").attr("style","display: block"); var title = "<h1>"+response[0].title+"</h1>"; $("#content_title").html(title); $(".title_img").attr("src",response[0].picurl); $("#content_content").html(response[0].content); } else { layer.msg("æ•°æ®ä¸ºç©º") } }, error: function error() { layer.msg('未知错误,请è”系客æœï¼', { icon: 5 }); } }); } else { layer.msg("æ— è¯¦ç»†å†…å®¹") } }*/ function UrlSearch(){ var str=window.location.href; //å–å¾—æ•´ä¸ªåœ°å€æ var num=str.indexOf("?"); str=str.substr(num+1); //å–å¾—æ‰€æœ‰å‚æ•° stringvar.substr(start [, length ] var arr=str.split("&"); //å„ä¸ªå‚æ•°æ”¾åˆ°æ•°ç»„里 for(var i=0;i < arr.length;i++){ num=arr[i].indexOf("="); if(num>0){ name=arr[i].substring(0,num); value=decodeURI(arr[i].substr(num+1)); this[name]=value; } } } function getInfo(newsid) { var result = null; $.ajax({ url: url+"/qyfw/commerce/commercechaxunid", data: { newsid: newsid }, type: "get", dateType: "json", async: false, success: function (response, status, xhr) { console.log(response); if(response.length == 1){ result = response[0]; } }, error: function () { layer.msg('未知错误,请è”系客æœï¼', { icon: 5 }); } }); return result; } function addSeeTime() { $.ajax({ url:url+"/news/zxbk/addBkSee", data: {"id":window.newsid}, type: "get", dateType: "json", async: true }); }