$(function () { // window.document.oncontextmenu = function () { return false; } $("a").focus(function () { //去掉边线 $(this).blur(); }); share()//分享 nav(); toolbar(); //qq在线 $('.news_list li').hover(function () { $(this).find('.left').stop(false).animate({ "padding-left": 10, 'border-left-width': 30 }, 'slow'); $(this).find('.right').stop(false).animate({ "padding-right": 10, 'border-right-width': 10 }, 'slow'); }, function () { $(this).find('.left').stop(false).animate({ "padding-left": 0, 'border-left-width': 0 }, 'fast'); $(this).find('.right').stop(false).animate({ "padding-right": 0, 'border-right-width': 0 }, 'fast'); }) }); var searchVa = $("#keyWord").val(); $("#keyWord").focus(function () { if ($(this).val() == searchVa) { $(this).val(""); } }).blur(function () { if ($(this).val() == "") { $(this).val(searchVa); } }); var deafult = $.trim($('#keyWord').val()); function topSearchUnit() { var _kw = $.trim($('#keyWord').val()); if (_kw != '' && _kw != deafult) { //20为分页条数 window.location.href = '/searchresults/' + _kw + '/{}/1/20'; } else { alert("请输入关键字"); $("#keyWord").focus(); } } function toolbar() { $('#toolbar dd').bind({ 'mouseenter': function () { if ($(this).children('.slide').length) { var _this = $(this).children('.slide'); _this.stop(true, true).animate({ 'width': 180 }, 200); } else if ($(this).children('.pop').length) { var _this = $(this).children('.pop'); _this.show().animate({ 'right': 65 }, 200); } }, 'mouseleave': function () { if ($(this).children('.slide').length) { var _this = $(this).children('.slide'); _this.stop(false, false).animate({ 'width': 0 }, 200); } else if ($(this).children('.pop').length) { var _this = $(this).children('.pop'); _this.hide().animate({ 'right': 90 }, 200); } } }); $("#top").click(function () { $("body, html").stop().animate({ "scrollTop": 0 }); }); } function nav() { //导航条鼠标滑过; $(".nav_main ul li").hover(function () { $(this).children("a").addClass("hover"); $(this).siblings().children("a").removeClass("hover"); $(this).children("dl").slideDown(); }, function () { $(this).children("a").removeClass("hover") $(this).children("dl").hide(); $(".nav_main ul li a").removeClass("hover"); //状态保存 $(".nav_main ul li a").each(function (i) { if ($(this).attr("href") != "/") { if (window.location.href.indexOf($(this).attr("href")) > -1) { $(this).addClass("hover"); } } }); }); } function share() { window._bd_share_config = { "common": { "bdSnsKey": {}, "bdText": "", "bdMini": "2", "bdMiniList": false, "bdPic": "", "bdStyle": "0", "bdSize": "16" }, "share": {} }; with (document) 0[(getElementsByTagName('head')[0] || body) .appendChild(createElement('script')) .src = 'http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion=' + ~(-new Date() / 36e5)]; }