jQuery动画与ajax

2017-09-22  本文已影响0人  marmot_ning

jQuery动画与ajax

jQuery 中, $(document).ready()是什么意思
$(document).ready(function)
$().ready(function)
$(function)   //三种语法是等价的
$node.html()和$node.text()的区别
$.extend 的作用和用法
用法:
var object=$.extend({},object1,object2);
var obj1 = {
  name : 'John',
  age : 12,
  sex : 'man',
  class: {Chinese : 'classV',English : 'classII'}
}
var obj2 = {
  name : 'King',
  age : 22,
  sex : 'man',
  career: 'doctor', 
  class : {History : 'class1'}
}

var newObj = $.extend({},obj1,obj2)
console.log(newObj)
//{age:22,career:"doctor",class:{History: "class1"},name:"King",sex:"man"}
用法为:
var object=$.extend(true,{},object1,object2);
更改上边的例子,变为:
var newObj = $.extend(true,{},obj1,obj2)
console.log(newObj)
//{age:22,career:"doctor",class:{Chinese: "classV", English: "classII", History: "class1"},name:"King",sex:"man"}
jQuery 的链式调用是什么
例如:
$(this).addClass("active").siblings().removeClass("active");

因为大部分对象方法的最后是return this,所以有了链式调用,简易代码

jQuery 中 data 函数的作用
.data( key, [value] )
.data( obj )
.data()
.data( key )
$('body').data('name', 'dot')
$('body').data('hobby', { fav: 'eat', love: 'food' })
$('body').data({ arr: [1, 2, 3, 4, 5] })

$('body').data('name')//dot
$('body').data()//{ name: "dot",hooby: { fav: "eat", love: "food" },arr: [1,2,3,4,5] }
写出以下功能对应的 jQuery 方法
$node.addClass('active')
$node.removeClass('active')
$node.show()
$node.hide()
//获取属性
$node.attr('id')
$node.attr('src')
$node.attr('title')
//修改属性
$node.attr('id','value')
$node.attr('src','value')
$node.attr('title','value')
$node.prop('data-src','value')
$ct.prepend($node)
$node.prependTo($ct)
$ct.append($node)
$node.appendTo($ct)
$node.remove()
$ct.empty()
$ct.html('<div class="btn"></div>')
$node.width();//不包括内边距宽度,仅包括内容
$node.height();//不包括内边距高度,仅包括内容
$node.innerWidth();//包括内容和内边距宽度
$node.innerHeight();//包括内容和内边距高度
$node.outerWidth();//包括内容,内边距,边框宽度
$node.outerHeight();//包括内容,内边距,边框高度
$node.outerWidth(true);//包括内容,内边距,边框,外边距高度
$node.outerHeight(true);//包括内容,内边距,边框,外边距宽度
$(window).scrollTop()
$node.offset().left
$node.offset().top
$node.css({
    'color': 'red',
    'font-size': '14px'
})
$node.each(function () {
    $(this).text($(this).text() + $(this).text())
})
$ct.find('.item')
$ct.children()
$node.parents('.ct').find('.panel')
$node.length
$node.index()
用jQuery实现以下操作
$("#btn").click(function(){
    $(this).css("background-color","red")
    setTimeout(function(){
      $("#btn").css("background-color","blue")
    },500)
  })
$(document).scroll(function(){
    console.log($(this).scrollTop()+'px')
  })
$('.div').on("mouseenter",function(){
    $(this).css("background","red");
});
$('.div').on("mouseleave",function(){
    $(this).css("background","#fff");
});
或:
$(".div").on("mouseover",function(){
    $(this).css("background-color","red");
});
$(".div").on("mouseout",function(){
    $(this).css("background-color","");
});
$('#ipt').on("focus",function(){
   $(this).css("outline-color","blue");
});
$('#ipt').on('keyup',function(){
    $(this).val($(this).val().toLocaleUpperCase());
});
$('#ipt').on('blur',function(){
     $(this).css("outline-color","none");
     if($(this).val()!=""){
         console.log($(this).val());
     }
});
$('#sel').on('change',function(){
    //或者console.log($(this).val());
    console.log($(this).find('option:selected').val());
});
用 jQuery ajax 实现如下效果。`当点击加载更多会加载数据展示到页面效果预览
<!DOCTYPE html>
<html>
<head>
  <style>
    body {
      text-align: center;
    }
    ul {
      list-style: none;
      padding: 0;
    }
    li {
      border: 1px solid;
      height: 30px;
      line-height: 30px;
      margin: 10px;
      cursor: pointer;
    }
    li:hover {
      background: green;
    }
  </style>
</head>
<body>
<ul></ul>
<button>加载更多</button>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
    let idx = 0, len = 3;
    $('button').on('click', function () {
        $.ajax({
            url: 'news',
            method: 'get',
            dataType: 'JSON',
            data: {
                length: len,
                index: idx
            }
        }).done(function (data) {
            idx += 3;
            appendHtml(data);
        }).fail(function () {
            alert('fail');
        })
    });
    let appendHtml = function (data) {
        for(let i in data){
            $('<li>' + data[i] + '</li>').appendTo('ul');
        }
    }
</script>

后端代码

/*
接口:'/loadMore'
方式:'get'
数据类型: 'json'
长度: 3
*/
app.get('/news', function (req, res) {
    var pos = req.query.index;
    var len = req.query.length;
    var data = [];
    for(var i=0; i<len; i++)
        data.push('新闻'+(parseInt(pos)+i));
    res.send(data);
});
上一篇下一篇

猜你喜欢

热点阅读