jQuery的四种写法

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

         //jQuery代码

      });

2、$(function(){

        //jQuery代码

     });

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

       //jQuery代码

    });

4、jQuery(function(){

       //jQuery代码

     });

孜孜不倦,必能求索;风尘仆仆,终有归途。
原文地址:https://www.cnblogs.com/liyuspace/p/9297684.html