//加入收藏 function addfavorite(surl, stitle) { surl = encodeuri(surl); try { window.external.addfavorite(surl, stitle); } catch (e) { try { window.sidebar.addpanel(stitle, surl, ""); } catch (e) { alert("加入收藏失败,请使用ctrl+d进行添加,或手动在浏览器里进行设置."); } } } //设为首页 function sethome(url) { if (document.all) { document.body.style.behavior = 'url(#default#homepage)'; document.body.sethomepage(url); } else { alert("您好,您的浏览器不支持自动设置页面为首页功能,请您手动在浏览器里设置该页面为首页!"); } } //性能不好 不过普通网站还好 去掉客户没填写链接时的新窗口打开 $("a[href='']").attr("href", "javascript:;"); $("a[href='javascript:;']").removeattr("target"); //更新浏览次数 function updatereadcount(type, id, readcountid) { $.ajax({ type: "post", url: "/index/updatereadcount", data: { "type": type, "id": id }, datatype: "text", async: false, success: function (data) { $("#" + readcountid).html(data); } }); } $(function () { //搜索 $("#searchbtn").click(function () { var wd = $("#wdtemp").val(); wd = wd.replace("输入关键字", ""); if (wd.length <= 0) { alert("请输入关键词~"); return; } location.href = "/index/search/" + wd + "/1"; }) // })