jQuery的不同方式

血红的双手。 提交于 2020-03-01 19:26:46
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>04-jQuery入口函数的其他写法</title>  <script src="../js/jquery-3.4.1.js"></script> <script>    /* $(document).ready(function () {      alert("hello inj");     });*/     /*jQuery(document).ready(function () {       alert("hello inj");     });*/    /*$(function () {      alert("hello inj");    });*/    /*jQuery(function () {      alert("hello inj");    });*/    /*    * 以上四种方式都是可以的推荐第三种    * $(function () {      alert("hello inj");    });    * */    $(function () {      alert("hello inj");    }); </script></head><body></body></html>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!