Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能在我的窗口上调度一个事件?例如在我的代码中,我有:
$("#info").click(function(){ // do stuff });
我需要第一次调用这个函数,而不需要点击#info,就像 // 做事一样。
您可以使用以下.trigger()方法:
.trigger()
$('#info').trigger('click');
或者简单地说:
$('#info').click();
这将是相同的。
更好的方法可能是创建一个执行所需内容的函数,然后执行$(document).ready(myFunc);and $("#info").click(myFunc);。
$(document).ready(myFunc);
$("#info").click(myFunc);