我在JavaScript中有一个函数:
$("#table-filters li").click(function(){ *** Lots of stuff here...
});
我想要发生的是当页面加载时,一次性运行该功能。包含在内的东西:
$(document).ready(function() {
});
建议?
谢谢!
答案 0 :(得分:4)
$(function(){
$("#table-filters li")
.click(function(){
// Lots of stuff here...
})
.slice(0,1).click();
});
答案 1 :(得分:1)
使用此:
$("#table-filters li").trigger("click");
答案 2 :(得分:-3)
$("#table-filters li:first").trigger("click");