$(function () { jquery(".slidebox").slide({ maincell: ".bd ul", effect: "left", autoplay: true }); //搜索框下拉选择 $('.ikd_sselect').click(function () { $('.ikd_sslist').toggle(); }); //搜索框下拉选择显示 $('.ikd_sslist p').click(function () { $('#ikd_sstxt').html($(this).html()); }); //返回顶部===================begin============================ $(window).bind('scroll', function () { if ($(document).scrolltop() > 200) { $(".ikd_rettop").css({ 'display': 'block' }); } else { $(".ikd_rettop").hide(1); } }) $(".ikd_rettop").click(function () { $('body,html').animate({ scrolltop: 0 }, 1000); }) //返回顶部=================end============================== });