// javascript document $(function () { $("#cultures .tab_culture h3.tit").click(function () { $(this).next('.desc').slidetoggle(0); $(this).toggleclass("hover"); }); $(":input").focus(function () { $(this).addclass("focus"); if ($(this).val() == this.defaultvalue) { $(this).val(""); } }).blur(function () { $(this).removeclass("focus"); if ($(this).val() == '') { $(this).val(this.defaultvalue); } }); //导航 dropmenu(".menucon li"); //右侧客服 $('#float_qq').delay(0).show(0); $('#float_qq_close a').click(function () { $('#float_qq').hide(0); }); //service $(".one_contact").hover(function () { $(this).find('.contact_desc').css("display", "block"); }, function () { $(this).find('.contact_desc').css("display", "none"); }); //隔行换色 $(".list_down li:not(li.none):odd").addclass("hasddb"); /* (除去tr 的class为none)奇数行添加样式*/ $(".list_down li:not(li.none):even").addclass("hasdda"); /* (除去tr 的class为none)偶数行添加样式*/ $(".jituan").hover(function () { $(this).find("ul").slidedown(); }, function () { $(this).find("ul").slideup(); }); //返回顶部 var $backtotoptxt = "", $backtotopele = $('
').appendto($("body")) .text($backtotoptxt).attr("title", $backtotoptxt).click(function () { $("html, body").animate({ scrolltop: 0 }, 120); }), $backtotopfun = function () { var st = $(document).scrolltop(), winh = $(window).height(); (st > 0) ? $backtotopele.show() : $backtotopele.hide(); //ie6下的定位 if (!window.xmlhttprequest) { $backtotopele.css("top", st + winh - 166); } }; $backtotopfun(); $(window).bind("scroll", $backtotopfun); }) function dropmenu(obj){ $(obj).each(function(){ var thespan = $(this); var themenu = thespan.find(".submenu"); var tarheight = themenu.height(); themenu.css({height:0,opacity:0}); thespan.hover( function(){ $(this).addclass("selected"); themenu.stop().show().animate({height:tarheight,opacity:1},400); }, function(){ $(this).removeclass("selected"); themenu.stop().animate({height:0,opacity:0},400,function(){ $(this).css({display:"none"}); }); } ); }); } function settab(name, cursel, num) { for ( i = 1; i <= num; i++) { var menu = document.getelementbyid(name + i); var con = document.getelementbyid(name + "_con_" + i); menu.classname = i == cursel ? "hover" : ""; con.style.display = i == cursel ? "block" : "none"; } } // 设置为主页 function sethome(obj,vrl){ try{ obj.style.behavior='url(#default#homepage)';obj.sethomepage(vrl); } catch(e){ if(window.netscape) { try { netscape.security.privilegemanager.enableprivilege("universalxpconnect"); } catch (e) { alert("此操作被浏览器拒绝!\n请在浏览器地址栏输入'about:config'并回车\n然后将 [signed.applets.codebase_principal_support]的值设置为'true',双击即可。"); } var prefs = components.classes['@mozilla.org/preferences-service;1'].getservice(components.interfaces.nsiprefbranch); prefs.setcharpref('browser.startup.homepage',vrl); }else{ alert("您的浏览器不支持,请按照下面步骤操作:1.打开浏览器设置。2.点击设置网页。3.输入:"+vrl+"点击确定。"); } } } // 加入收藏 兼容360和ie6 function shoucang(stitle,surl) { try { window.external.addfavorite(surl, stitle); } catch (e) { try { window.sidebar.addpanel(stitle, surl, ""); } catch (e) { alert("加入收藏失败,请使用ctrl+d进行添加"); } } }