可能重複:
What is the difference between these jQuery ready functions?jQuery函數包裝VS DOM準備
$(function(){
// ... do stuff
});
VS
$(document).ready(function() {
// ... do stuff
});
我看到一些舊代碼的第一個和我承擔這兩個是相似的?對彼此有利嗎?
可能重複:
What is the difference between these jQuery ready functions?jQuery函數包裝VS DOM準備
$(function(){
// ... do stuff
});
VS
$(document).ready(function() {
// ... do stuff
});
我看到一些舊代碼的第一個和我承擔這兩個是相似的?對彼此有利嗎?