我有一个wordpress网站,那里有菜单。我想要的是,当一些身体悬停SITE徽标然后它显示下拉菜单....我想要做的是不仅在我点击时总是打开。它必须在页面刷新时加载,
任何人都可以告诉他们该怎么做吗?
答案 0 :(得分:2)
在页面加载后使用$(document).ready(function() {}
运行代码。然后,您可以使用JQuery delay()函数在菜单对象上调用slideDown之前等待3秒。像这样的东西会起作用:
$(document).ready(function() {
$('#yourMenuID').delay(3000).slideDown(300);
}
答案 1 :(得分:0)
文档 - http://api.jquery.com/ready/
//only execute when the document returns ready
//this can be trivial if your putting the code at the footer
//you may wish to use a self invoking function in that case
$(document).ready(function(){
setTimeout(function(){
//do something
$('#somethingcool').css('background-color', 'red');
//3 seconds = 3000ms
}, 3000);
});