Jquery第一课,初识Jquery

Jquery
参考书。锋利的Jquery
1.顶级对象 Jquery===$
2.多写注释

$(document).ready(function(){
alert(‘hello’);
});

( d o c u m e n t ) . r e a d y ( f u n c t i o n ( ) a l e r t ( ′ h i ′ ) ; ) ; / / (document).ready(function(){ alert('hi'); }); // (document).ready(function()alert(hi););//(document).ready(),事件只要页面中的HTML标签都准备好了,构建好了documnet对象就会被触发,内部通过判断document.readyState属性决定什么时候触发
简写 $(function(){
alert(hello);
});

//完全等于window.onload
$(window).load(function(){
alert(‘test’);
});

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>

    <script src="js/jquery-3.5.0.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            alert('我是麻烦的hell world')
        });
        //推荐写法
        $(function () {
            alert('我是简写的hello world');
        });
        $(function () {
            alert('我们可以多次写并不会覆盖哦。');
        });

          //3.0中已经废弃了window.load了
        //$(window).load(function () {
        //    alert('我是相当于window.onload的HelloWorld');
        //});
        //但是有一种写法可以可以用,但是不建议。因为没有简化
        $(window).on('load', function () {
            alert('我是相当于window.onload的HelloWorld');
        });


      
        
    </script>
</head>
<body>
    <input type="button" name="name" value="" />
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值