$(document).ready()
1つのhtmlファイルまたは1つのjavascriptファイルでいくつの関数を使用できますか?
$(document).ready(function(){
alert("first document ready");
//do some action here
});
$(document).ready(function(){
alert("second document ready");
//do some action here too
});
無限を使用できる場合、それらはどのように呼び出されますか?彼らは行ごとに実行しますか、それともこれを呼び出すためのアルゴリズムはありますか?