/* 搜索提示 */ function checksearch(the) { if ($.trim(the.key.value) == '') { alert('请输入关键字'); the.key.focus(); the.key.value = ''; return false } if ($.trim(the.key.value) == '请输入关键字') { alert('请输入关键字'); the.key.focus(); the.key.value = ''; return false } } /* 浮动工具栏 */ $(document).ready(function() { $(window).scroll(function() { var offsettop = $(window).scrolltop() + 78 + "px"; $("#common-tool").animate({ top: offsettop }, { duration: 500, queue: false }); }); /* 滚动监听 */ $(window).scroll(function() { if ($(window).scrolltop() > 50) { $("#common-top-ico").fadein(500); } else { $("#common-top-ico").stop(true,true).fadeout(500); } }); /* 返回顶部 */ $('.common-top').click(function() { $("html,body").animate({ scrolltop: 0 }, 200); }); /* 二维码隐藏 */ $("#common-sweep-ico").hover(function() { $(".common-sweep-box").stop(true, true).fadetoggle(500); }); });