jQuery动画与ajax

2017-04-11  本文已影响0人  S级食材咩咩羊

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

当DOM加载完成后执行该函数

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

3.$.extend 的作用和用法?

4.jQuery 的链式调用是什么?

在对象上一次性调动多个方法,利用方法返回this实现

$(this).addClass("active").siblings().removeClass("active")

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: "abc",
  src: "aaa",
  title: "aaa"
})
$node.data($node[0],"src", xxx);
$ct.prepend($node)
$ct.append($node)
$node.remove();
$ct.empty();
$ct.html('<div class = "btn"></div>)
不包括内边距
$node.width();
$node.height();
包括内边距
$node.innerWidth();
$node.innerHeght();
包括边框
$node.outerWidth();
$node.outerHeight();
包括外边距
$node.outerWidth(true);
$node.outerHeight(true);
$(window).scrollTop();
$node.offset()
$node.css({
  "color": "red",
  "font-size": "14px"
})
$node.each(function(){
  console.log($(this).text())
})
$ct.index('.item');
$ct.children();
$node.parents('.ct').find('.panel');
$node.length
$node.index();
上一篇下一篇

猜你喜欢

热点阅读