我爱编程

jQuery动画与ajax

2017-10-24  本文已影响19人  Sketch

小练习:

题目1: jQuery 中, $(document).ready()是什么意思?

让指定事件在DOM准备就绪时加载或触发。

与window.onload的区别
  1. 执行时间:
  1. 编写个数不同
  1. 简化写法

题目2: $node.html()和$node.text()的区别?

题目3: $.extend() 的作用和用法?

将两个或更多对象的内容合并到第一个对象。

jQuery.extend( [deep ], target, object1 [, objectN ] )

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

如果只有一个参数提供给$.extend(),这意味着目标参数被省略。在这种情况下,jQuery对象本身被默认为目标对象。这样,我们可以在jQuery的命名空间下添加新的功能。

默认情况下,第一个参数会被修改,如果我们需要保留原对象,那么可以传递一个空对象作为目标对象:

var object = $.extend({}, object1, object2);

题目4: jQuery 的链式调用是什么?

在一条代码中对指定对象按顺序调用多种方法,节省代码量,提高代码的效率。

题目5: jQuery 中 data 函数的作用

在匹配元素上存储任意相关数据 或 返回匹配的元素集合中的第一个元素的给定名称的数据存储的值。

题目6: 写出以下功能对应的 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.attr('data-src', value);
$ct.prepend($node);
$ct.apend($node);
$node.remove();
$ct.empty();
$ct.html('<div class="btn"></div>');
// 获取内容宽度和高度
$node.width();
$node.height();

// 获取内容宽度和高度(包括padding,但不包括border)
$node.innerWidth();
$node.innerHeight();

// 获取内容宽度和高度(包括padding,border和可选的margin)
$node.outerWidth();
$node.outerHeight();

// 获取内容宽度和高度(包括padding,border,margin)
$node.outerWidth(true);
$node.outerHeight(true);
$(window).scrollTop()
$node.offset();
$node.css({
  'color': 'red',
  'font-size': '14px'
});
$node.each(function() {
  var $this = $(this);
  var content = $this.text();
  $this.text(content + content);
});
$ct.find('.item');
$ct.children();
$node.parents('.ct').find('.panel');
$node.length;
$node.index();

题目7:用jQuery实现以下操作

$btn.on('click', function() {
  $btn.css('background', 'red');
  setTimeout(function() {
    $btn.css('background', 'blue');
  },1000);
});
$(window).scroll(function() {
  console.log($(window).scrollTop());
});
$div.on('mouseover', function() {
  $div.css('background', 'red');
});

$div.on('mouseout', function() {
  $div.css('background', '#fff');
});
$input.on('focus', function() {
  $input.css('border-color', 'blue');
});

$input.on('keyup', function() {
  $input.val($input.val().tpUpperCase());
});

$input.on('blur', function() {
  $input.css('border-color', 'transparent');
});
$node.on('change', function() {
  console.log($(this).val());
});

使用jQuery实现加载更多

GitHub地址:点击查看

上一篇下一篇

猜你喜欢

热点阅读