jQuery的四种写法

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

         //jQuery代码

      });

2、$(function(){

        //jQuery代码

     });

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

       //jQuery代码

    });

4、jQuery(function(){

       //jQuery代码

     });

猜你喜欢

转载自www.cnblogs.com/liyuspace/p/9297684.html