<!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>
来源:https://www.cnblogs.com/god1/p/12391185.html