Jquer的三种初始化方式

$(document).ready(function(){
  alert(200);
});
jQuery(function($){
  alert(100);
});
$(function(){
  alert(300);
});
相关文章
相关标签/搜索