Jquer的三种初始化方式

$(document).ready(function(){
  alert(200);
});
jQuery(function($){
  alert(100);
});
$(function(){
  alert(300);
});
原文地址:https://www.cnblogs.com/shibazi/p/3875156.html