jQuery的四种写法

1、$(document).ready(function(){

         //jQuery代码

      });


2、$(function(){

        //jQuery代码

     });


3、jQuery(document).ready(function(){

       //jQuery代码

    });


4、jQuery(function(){

       //jQuery代码

     });

原文地址:https://www.cnblogs.com/hzcya1995/p/13315753.html