这是我的代码。
在第4行,我想在鼠标进入lastItemsLink后2秒运行这个.openList。
我怎么能这么做呢?
lastItemsLink = $(".last-items"),
openLastItemsList = {
init: function() {
lastItemsLink.on("mouseenter", this.openList);
lastItemsLink.on("mouseleave", this.closeList);
},
openList: function() {
lastItemsContainer.stop(false, true).slideDown("fast");
},
closeList: function() {
lastItemsContainer.stop(false, true).fadeOut("fast");
}
};
4条答案
按热度按时间jjjwad0x1#
你可能需要做一些事情,
演示:Fiddle
qqrboqgw2#
使用setTimeout:
mi7gmzs63#
Try .delay()函数click here
可能会起作用,给予试一试.
pkmbmrz74#
解决方案: