jQuery入口函数写法

<script>
    $(document).ready(function () {
    //    alert("hello");
    });
    jQuery(document).ready(function(){
      //  alert("hello inj");
    });
    $(function () {
      //  alert("hello in");
    });
    jQuery(function(){
        alert("hi");
    });
</script>


猜你喜欢

转载自blog.csdn.net/weixin_42124866/article/details/80958230