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.
我需要mymethod()在日历加载时调用一个方法。在文档中我没有找到任何东西。最初我正在显示月视图并且没有事件。
mymethod()
显示日历后如何调用mymethod()..
您想在所有内容加载后调用 mymethod 函数吗?如果是这样的话:
$(document).ready(function(){ // everything has loaded function mymethod { // function logic goes here } mymethod(); });