うまくいけば、非常に簡単な質問です。私はそのように書かれたいくつかのさまざまなjs関数を持っています:
var app={
start:function(){
//do some stuff and call calculate
}, //end start
calculate:function(){
//do some more stuff
} //end calculate
}; //end var app
var neato={
go:function(){
//do some stuff and call creation
}, //end go
creation:function(){
//do some more stuff
} //end creation
}; //end var neato
次に、次のように開始できます。
$(document).ready(app.start);
$(document).ready(neato.go);
両方の機能を 1 つのドキュメント準備完了リクエストで開始する方法はありますか?? いくつかの異なる可能性を試しても、それを理解できないようです。