var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-47414136-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); $(document).ready(function() { //答案默认是展开的 $("#faq dd").hide(); $('#faq').find('dt').click(function() { // alert($(this).next().html()); $(this).next().slideToggle(); }); });

Airwheel

var l = $("#gotoTop").offset().left; function gotoTop(min_height) { $("#gotoTop").click(//定义返回顶部点击向上滚动的动画 function () { $('html,body').animate({ scrollTop: 0 }, 500); $(".func_box a:eq(0)").addClass("current"); }).hover(//为返回顶部增加鼠标进入的反馈效果,用添加删除css类实现 function () { // 鼠标移上去的事件 $(this).addClass("gotoTopHover"); $(".gotoTopTip").fadeIn(); }, function () { // 鼠标移除的事件 $(this).removeClass("gotoTopHover"); $(".gotoTopTip").fadeOut(); } ); //获取页面的最小高度,无传入值则默认为600像素 min_height ? min_height = min_height : min_height = 100; //为窗口的scroll事件绑定处理函数 $(window).scroll(function () { //获取窗口的滚动条的垂直位置 var s = $(window).scrollTop(); //当窗口的滚动条的垂直位置大于页面的最小高度时,让返回顶部元素渐现,否则渐隐 if (s > min_height) { $("#gotoTop").fadeIn(100); $("#gotoTop").css("position", "fixed"); $("#gotoTop").css("left", l); } else { $("#gotoTop").fadeOut(200); }; }); }; var ie6=!window.XMLHttpRequest; if (ie6) { document.getElementById("gotoTop").style.display = "none"; } else { gotoTop(); }
function showEWM(){ document.getElementById("EWM").style.display = 'block'; } function hideEWM(){ document.getElementById("EWM").style.display = 'none'; }
/* */
var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1000258264'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s22.cnzz.com/z_stat.php%3Fid%3D1000258264%26show%3Dpic1' type='text/javascript'%3E%3C/script%3E"));