function dy_scroll(wraper,prev,next,img,speed,or) { var wraper = $(wraper); var prev = $(prev); var next = $(next); var img = $(img).find('ul'); var w = img.find('li').outerwidth(true); var s = speed; next.click(function() { img.animate({'margin-left':-w},function() { img.find('li').eq(0).appendto(img); img.css({'margin-left':0}); }); }); prev.click(function() { img.find('li:last').prependto(img); img.css({'margin-left':-w}); img.animate({'margin-left':0}); }); if (or == true) { ad = setinterval(function() { next.click();},s*1000); wraper.hover(function(){clearinterval(ad);},function(){ad = setinterval(function() { next.click();},s*1000);}); } } $(function(){ var cname=""; $("#nav li").hover(function(){ cname=$(this).attr("class"); if(!cname){$(this).addclass("hover");} $("dl",this).show(); },function(){ $("dl",this).hide(); if(!cname){$(this).removeclass("hover");} }); // dy_scroll('.prolist','.arrow_left','.arrow_right','.prolist',5,true); }) 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 } }