ultListTag"> 公开/私有: 公开 私有
检索词: , 在宽甸镇分馆 检索到: 0 条结果, 检索时间: 0.013 秒

在以下图书馆搜索
硼海分馆
宽甸镇分馆
青椅山分馆
同兴分馆
菩萨庙镇
黑沟镇
合隆乡
北井子镇
椅圈镇
青城子镇
弟兄山镇
赛马镇
兴东茂生分馆
丹东市图书总馆
公开/私有: 公开 私有
检索词: , 在宽甸镇分馆 检索到: 0 条结果, 检索时间: 0.013 秒

在以下图书馆搜索
还可以搜索


$("#holdingPreviewDiv_" + bookrecno).html(""); var tableStr = createTable("expressTable", tableHeader, tableContent); $("#holdingPreviewDiv_" + bookrecno).html(tableStr); }else{ var appendStr = ""+lib+""+year+""+count+""; $("#holdingPreviewDiv_" + bookrecno).find('table').append(appendStr); } } } } }); } $(function(){ //做一个高亮效果 function trim(s){ //去除左右空格 return s.replace(/(^\s*)|(\s*$)/g, ""); } var searchValueUpper ; var reg; function highlighter(items){ if(!items){ return; } items.each(function(){ var innerText=trim($(this).html()); //处理大小写问题 var innerTextUpper=innerText.toUpperCase(); var _index=innerTextUpper.indexOf(searchValueUpper); innerTextVal=innerText.substr(_index,searchValueUpper.length); if(reg.test(innerText)){ console.log(innerTextVal); //匹配成功 var newinner = innerText.replace(reg,''+innerTextVal+'')//处理HTML字符串,为目标文本加上样式,即替换对应的HTML结构 $(this).html(newinner);//把处理后的HTML字符串写回到容器中 } }); } //检索词 function light(searchValue,searchway){ searchValueUpper=searchValue.toUpperCase(); if(searchValue&&searchValue!="*:*"){ reg = new RegExp(searchValue,"gi"); if(searchway==""||searchway=="marc"){ highlighter($(".title-link")); highlighter($(".author-link")); highlighter($(".publisher-link")); }else if(searchway=="title"||searchway=="title200a"){ highlighter($(".title-link")); }else if(searchway=="author"){ highlighter($(".author-link")); }else if(searchway=="publisher"){ highlighter($(".publisher-link")); } } } var searchway = ""; if(!searchway){ searchway = "marc"; } light("",searchway); }); //延迟加载的内容 $(window).load(function(){ setTimeout(function(){ var globalLibraryCode = "P2LN0415007"; //获取封面 loadBookcovers(globalLibraryCode); //自动获取图书元数据信息是否存在的标识  if($.cookie("configouternet")=="false"){ return; } var haveBookMetaResource = "1"; if(haveBookMetaResource != '1') { return; } function getDivISBNs() { var divObjects = $("div[express_isbn]"); var isbns = ""; divObjects.each(function(index){ var isbn = $(this).attr("express_isbn"); isbns += "," + isbn; }); return isbns; } var isbns = getDivISBNs(); if(isbns == "") { return; } var strURL = GLOBAL_BASE_API_URL + "/api/bookmetadatastatus?glc="+globalLibraryCode+"&isbns="+isbns +"&returnType=json&callback=showAllBookMetaInfoTab&jsoncallback=?"; $.getJSON(strURL, {}); //信息推送 $.getScript("http://api.interlib.com.cn:8586/InterlibCommonService/media/centerservice.js").done(function(){ var baseParam = "q=*%3A*&searchType=standard&isFacet=true&view=standard&searchWay=subject&rows=10&sortWay=score&sortOrder=desc&curlibcode=001&f_subject=%E9%A9%AC%E5%85%8B%E6%80%9D%E4%B8%BB%E4%B9%89&f_author=%28%E7%BE%8E%29%E7%A7%91%E6%81%A9%E7%AD%89%E8%91%97&f_author=%E7%A7%91%E6%81%A9&f_booktype=1&searchWay0=marc&logical0=AND"; baseParam+="&numFound=0"; pushResultData(1,"P2LN0415007",baseParam); showAD(); }); }, 1000); }); //加载"图书馆"分面信息 $(function(){ $("#otherLibs").hide(); $.ajax({ type:"GET", url:"/opac/api/search?q=%E6%9D%8E%E5%9B%9B%E5%85%89&searchType=standard&isFacet=true&view=standard&rows=10&sortWay=score&sortOrder=desc&f_subject=%E7%8E%B0%E4%BB%A3&f_author=%E7%8E%8B%E9%87%91%E9%94%8B%E7%BC%96%E5%86%99&f_class1=i&f_class2=i2&searchWay0=marc&logical0=AND&wt=json", dataType: "json", success: function(data){ if(data&&data.facet_counts){ var libcodefacets = data.facet_counts.facet_fields.curlibcode; if(libcodefacets) { var index = 0; var libs = new Array(); var disablelib = ""; //加载检索结果数量 for (var i=0; i < libcodefacets.length; i++){ if((i+1)%2==1){ var libcode = libcodefacets[i]; var count = libcodefacets[i+1]; var li = $("li[code='"+libcode+"']"); var div = $("div[code='"+libcode+"']"); if(libcode!=disablelib){ if(div.length==1){ index++; div.find("span").html("("+count+"个结果)"); libs.push(libcode); }else if(li.length==1){ index++; li.find(".facetCount").html("("+count+")"); if(index<=10){ li.removeClass("hide") }else{ if(!li.hasClass("hide")){ li.addClass("hide"); } } libs.push(libcode); } } } } //隐藏无结果分馆 $("#otherLibs>div, #curlibcodeFacetUL>li").each(function(){ var libcode = $(this).attr("code"); if(libcode && $.inArray(libcode, libs)==-1){ $(this).remove(); } }); //"更多"按钮的显示处理 if(index>10){ $("#curlibcodeFacetLI").show(); }else{ $("#curlibcodeFacetLI").hide(); } if(index>0){ $("#otherLibs").show(); }else{ $("#otherLibs").hide(); } } } } }); }); $(function(){ $.cookie("searcher_libcode", "00901", {expires:365, path:'/opac'}); });