我想将以下 javascript 从鼠标悬停事件调整为页面加载事件,但是到目前为止我的尝试都失败了。所以澄清一下,当页面加载时,我希望脚本激活。这是代码:
$(function() {
$('#sdt_menu2 > li').bind('mouseenter',function(){
var $elem = $(this);
$elem.find('img')
.stop(true)
.andSelf()
.find('.sdt_wrap')
.stop(true)
.andSelf()
.find('.sdt_active')
.stop(true)
.animate({'height':'45px'},300,function(){
var $sub_menu = $elem.find('.sdt_box');
if($sub_menu.length){
}
});