文档加载的三种方式

版权声明:转载请指明出处 https://blog.csdn.net/weixin_42321963/article/details/81948208
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <title>webrx</title>
    <script src="../jquery-3.3.1.js"></script>
    <script>
        $(document).ready(function () {
            alert("第一种");
        });
        $().ready(function () {
            alert("第二种");
        })
        $(function () {
            alert("第三种");
        })
    </script>

</head>
<body>
</body>
</html>






结果:

猜你喜欢

转载自blog.csdn.net/weixin_42321963/article/details/81948208