美文网首页
jQuery基础知识梳理(二)

jQuery基础知识梳理(二)

作者: 汤初景 | 来源:发表于2017-11-10 13:51 被阅读0次

    jQuery 中, $(document).ready()是什么意思?

    当DOM加载完成时,执行其中的代码。
    与原生JavaScript中的load事件需要在页面所有内容加载完成后才执行不同,ready只要在DOM结构加载完成后,就可以执行。

    $(document).ready(function(){
    });
    可简写为:
    $(function(){
    })
    

    $node.html()和$node.text()的区别?

    $node.html()取得或设置配元素的html内容。
    $node.text()取得或设置所有匹配元素的文本内容。

    $.extend 的作用和用法?

    • 当我们提供两个或多个对象给$.extend(),对象的所有属性都添加到目标对象(target参数)。

    • 如果只有一个参数提供给$.extend(),这意味着目标参数被省略。在这种情况下,jQuery对象本身被默认为目标对象。

    目标对象(第一个参数)将被修改,并且将通过$.extend()返回。然而,如果我们想保留原对象,我们可以通过传递一个空对象作为目标对象:

    var obj= $.extend({}, obj1, obj2);
    
    var obj1 = {
        name: '11',
        age: 22
    };
    var obj2 = {
        name: '22',
        sex: '男'
    };
    $.extend(obj1, obj2);    //obj1 {name: "22", age: 22, sex: "男"}  obj1改变
    
    var obj1 = {
        name: '11',
        age: 22
    };
    var obj2 = {
        name: '22',
        sex: '男'
    };
    $.extend({}, obj1, obj2);    // {name: "22", age: 22, sex: "男"}用这种方法,相当于把obj1和obj2合并后的结果赋值给一个新建的对象。不会改变obj1的对象结构。
    

    jQuery 的链式调用是什么?

    链式调用就是分步骤地对jQuery对象实现各种操作。
    它的原理在于每一步的jQuery操作,返回的都是一个jQuery对象,所以不同操作可以连在一起。优点在于:
    1.代码更精简。链式调用能大大精简代码量,多项操作一行代码一气呵成;
    2.优化性能。使用链式调用,所有操作代码共享一个jQuery对象,省去了逐步查询DOM元素的性能损耗。

    $this.parents('.mod-tab').find('.panel').eq(index).addClass('active').siblings().removeClass('active')
       })
    

    jQuery 中 data 函数的作用

    存储任意数据到指定的元素并且/或者返回设置的值。 jQuery.data() 方法允许我们在DOM元素上附加任意类型的数据。如果 DOM 元素是通过 jQuery 方法删除的或者当用户离开页面时,jQuery 同时也会移除添加在上面的数据。我们可以在一个元素上设置不同的值,并获取这些值:
     $(node).data('a', 1) //         key='a';value=1
     $(node).data({b:2})  //        直接传递一个object
     $(node).data() //                {a:1,b:2}
    

    写出以下功能对应的 jQuery 方法:

    $node = $('.node')
    

    给元素 $node 添加 class active,给元素 $noed 删除 class active

    $node.addClass('active');
    $node.removeClass('active');
    

    展示元素$node, 隐藏元素$node

    $node.show()
    $node.hide()
    

    获取元素$node 的 属性: id、src、title, 修改以上属性

    $node.attr('id')
    $node.attr('id','value')
    $node.attr('src')
    $node.attr('src','value')
    $node.attr('title')
    $node.attr('title','value')
    

    给$node 添加自定义属性data-src

    $node.attr('data-src','abc')
    

    在$ct 内部最开头添加元素$node

    $ct.prepend($node)
    

    在$ct 内部最末尾添加元素$node

    $ct.append($node)
    

    删除$node

    $node.remove()
    

    把$ct里内容清空

    $ctct.empty()
    

    在$ct 里设置 html <div class="btn"></div>

    $ct.html('<div class="btn"></div>')
    

    获取、设置$node 的宽度、高度(分别不包括内边距、包括内边距、包括边框、包括外边距)

    //不包括内边距
    $node.height();              //读取高度
    $node.width();               //读取宽度
    $node.height('50px');     //设置高度
    $node.width('50px');      //设置宽度
    
    //包括内边距
    $node.innerHeight();    //读取高度
    $node.innerWidth();      //读取宽度
    $node.innerHeight( '50px' );    //设置高度
    $node.innerHeight( '50px' );    //设置高度
    
     //包括边框
    $node.outerHeight();    //读取高度
    $node.outerwidth();    //读取宽度
    $node.outerHeight('50px');    //设置高度
    $node.outerwidth('50px');    //设置宽度
    
    //包括外边距
    $node.outerHeight(true);    //读取高度
    $node.outerwidth(true);    //读取宽度
    
    

    获取窗口滚动条垂直滚动距离

    $node.scrollTop()
    

    获取$node 到根节点水平、垂直偏移距离

    $node.offset()
    

    修改$node 的样式,字体颜色设置红色,字体大小设置14px

    $node.css({"color":"red","font-size":"14px"})
    

    遍历节点,把每个节点里面的文本内容重复一遍

    $('#items li').each(function () {
            var text = $(this).text();
            $(this).text(text + text);
        })
    

    从$ct 里查找 class 为 .item的子元素

    $ct.find('.item')
    

    获取$ct 里面的所有孩子

    $ct.children();
    

    对于$node,向上找到 class 为'.ct'的父亲,在从该父亲找到'.panel'的孩子

    $node.parents('.ct').find('.panel');
    

    获取选择元素的数量

    $node.length
    

    获取当前元素在兄弟中的排行

    $node.index()
    
    

    用jQuery实现以下操作

    当点击$btn 时,让 $btn 的背景色变为红色再变为蓝色
    $btn.click(function(){
        $btn.css('background','red')
        setTimeout(function(){$btn.css('background','blue')},500)
      })
    
    当窗口滚动时,获取垂直滚动距离
    $(window).on('scroll',function(){
       console.log($(window).scrollTop())
     })
    
    当鼠标放置到$div 上,把$div 背景色改为红色,移出鼠标背景色变为白色
    $div.on('mouseenter',function(){
        $div.css({'background-color': 'red'})
      })
    
      $div.on('mouseout',function(){
        $div.css({'background-color': 'white'})
      })
    
    
    
    当鼠标激活 input 输入框时让输入框边框变为蓝色,当输入框内容改变时把输入框里的文字小写变为大写,当输入框失去焦点时去掉边框蓝色,控制台展示输入框里的文字
    $('input').on('input',function(){
            var text = $(this).val().toUpperCase()
            $(this).val(text)
          })
    
          $('input').blur(function(){
            console.log($(this).val())
          })
    
    
    当选择 select 后,获取用户选择的内容
    var $select = $('#select');
    $select.on('change',function(){
      console.log($select.val());
    })
    

    用 jQuery ajax 实现如下效果。`当点击加载更多会加载数据展示到页面

    效果预览

    前端代码

    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <style>
        ul{
            padding: 0;
        }
        li{
            list-style: none;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 10px;
            margin-top: 20px;
            cursor: pointer;
        }
        li:hover{
            background: green;
        }
        button{
            display: block;
            border-radius: 3px;
            margin: 10px auto;
            padding: 10px;
            background: white;
            color: #E21320;
            border: 1px solid #e21320;
            outline-color: transparent;
            font-size: 16px;
            cursor: pointer;
        }
    </style>
    <body>
    <ul>
        <li>新闻1</li>
        <li>新闻2</li>
    </ul>
    <button>加载</button>
    <script src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.js"></script>
    <script>
    
        $('button').on('click',function () {
            var index = $('ul li').length + 1;
            $.ajax({
                url: '/loadMore',
                type: 'get',
                data: {
                    index: index,
                    length: '5'
                }
            }).done(function (ret) {
                appendHtml(ret);
            }).fail(function () {
                console.log('错误');
            })
        })
        function appendHtml(news){
            console.log(news);
            var html = '';
            $(news).each(function () {
                html += '<li>'+this+'</li>';
            });
            $('ul').append(html);
        }
    </script>
    </body>
    </html>
    

    后端

    router.get('/loadMore',function (req,res) {
    var index = req.query.index;
    var length = req.query.length;
    var data = [];
    for(var i=0;i<length;i++){
    data.push('内容' + (parseInt(index) + i));
    }
    res.send(data);
    });
    
    

    相关文章

      网友评论

          本文标题:jQuery基础知识梳理(二)

          本文链接:https://www.haomeiwen.com/subject/ljzpmxtx.html