function getevent() { if (document.all) return window.event; //如果是ie func = getevent.caller; while (func != null) { var arg0 = func.arguments[0]; if (arg0) { if ((arg0.constructor == event || arg0.constructor == mouseevent) || (typeof(arg0) == "object" && arg0.preventdefault && arg0.stoppropagation)) { return arg0; } } func = func.caller; } return null; } function killerrors() {return true;} window.onerror = killerrors; // jquery开始 $(document).ready(function() { // 编辑区内的p>img的间距调整 $(".editbody p > img").parent().css({"padding-top":10,"padding-bottom":0,"text-align":"center"}); //顶部下拉 $('.js_dropcon').each(function() { $(this).children('a').click(function() { var status = $(this).next().css("display"); if (status == "none") { $(this).parent().addclass("currentclk"); $(this).next().css("display", "block"); } else { $(this).parent().removeclass("currentclk"); $(this).next().css("display", "none"); } }); }); $('.dropclose').each(function() { $(this).children('a').click(function() { var status = $(this).parent().parent().css("display"); if (status == "none") { $(this).parent().parent().css("display", "block"); } else { $(this).parent().parent().parent().removeclass("currentclk"); $(this).parent().parent().css("display", ""); } }); }); $(".js_dropcon").mouseleave(function() { $(this).find(".dropcon").hide(); $(this).removeclass("currentclk"); }) //搜索 $(".ipt1").focus(function(){ $(this).parent().addclass("topschh"); }); $(".ipt1").blur(function(){ $(this).parent().removeclass("topschh"); }); $(".btn1").hover(function(){ $(this).parent().addclass("topschh"); },function(){ $(this).parent().removeclass("topschh"); }) //返回顶部 $('.backtop').click(function() { $('html, body').animate({ scrolltop: 0 }, 500); return false; }); //收起展开 $(".btnup").click(function () { $(".hide").slidetoggle("slow"); $(this).toggleclass("btndown"); $(this).text()=="收起"?$(this).html("展开"):$(this).html("收起"); }); //样式美化 $(".slider li:first").addclass("nobt"); //导航下拉 $(".slider li:first").addclass("nobt"); //样式美化 $(".mainnav").click(function(){ $(this).addclass("mainnavhover"); $(this).find("ul").show(); }); $(".mainnav").mouseleave(function(){ $(this).removeclass("mainnavhover"); $(this).find("ul").hide(); }) //微信 $(".weixinitem").hover(function(){ $(this).find(".wxfloat").show(); },function(){ $(this).find(".wxfloat").hide(); }) //字母切换 $(".js_letter li a").click(function(){ $(this).parent().addclass("current").siblings().removeclass("current"); }); //视频年份下拉 $('.age').hide(); $('.js_age span').click(function() { $(this).parent().find('.age').slidedown("fast"); $(this).parent().find('li').hover(function() { $(this).addclass('hover') }, function() { $(this).removeclass('hover') }); $(".age").mouseleave(function(){ $(this).slideup("fast"); }); }); $('.age li').click(function() { $(this).parent().parent().find('span').html($(this).html()); $(this).parent().parent().find('ul').slideup("fast"); }); $(".js_age").mouseleave(function(){ $(".age").slideup("fast"); }); }); //tab选项卡 function settab(name, cursel, n) { for (i = 1; i <= n; i++) { var menu = document.getelementbyid(name + i); var con = document.getelementbyid("con_" + name + "_" + i); menu.classname = i == cursel ? "hover":""; con.style.display = i == cursel ? "block": "none"; } } function settab2(name, cursel, n) { for (i = 1; i <= n; i++) { var menu = document.getelementbyid(name + i); var con = document.getelementbyid("con_" + name + "_" + i); menu.classname = i == cursel ? "hover":""; con.style.visibility = i == cursel ? "visible": "hidden"; con.style.display = i == cursel ? "block": "none"; } } function getvalue(){ document.getelementbyid('up01').value = document.getelementbyid('v_up01').value; document.getelementbyid('up02').value = document.getelementbyid('v_up02').value; document.getelementbyid('up03').value = document.getelementbyid('v_up03').value; } //搜索下拉 function select_form() { var thisinput=$("#myselect"); var thisul=$(thisinput).parent().find("ul"); if(thisul.css("display")=="none") { if(thisul.height()>200){thisul.css({height:"200"+"px","overflow-y":"scroll" })}; thisul.fadein("100"); thisul.hover(function(){},function(){thisul.fadeout("100");}) thisul.find("li").click(function() { var slect_str = $(this).html(); if(slect_str == '视频') { $("#typeid").val('73'); } else { $("#typeid").val('66'); } thisinput.html($(this).html()); thisul.fadeout("100");}).hover(function(){$(this).addclass("hover");},function(){$(this).removeclass("hover");}); } else { thisul.fadeout("fast"); } } /* * 检查搜索文字合法性 */ function chksearch_form() { var q = $("#q").val(); if(!q||q=='请输入关键词') { $("#q").focus(); return false; } return true; } function trim(str){ return str.replace(/(^\s*)|(\s*$)/g, ""); }