jQurey动画和ajax (方法总结)

2017-10-18  本文已影响0人  Lucien_d70a

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

和window.onload的区别在于

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

$node.html():获取元素内html标签加文本内容。
$node.text():只获取元素内的文本内容。

$.extend 的作用和用法?

//相同的属性会被最后的对象覆盖
$.extend(true(深拷贝)/false(不是深拷贝),obj1,obj2,boj3...)
var obj5=extend(true(深拷贝)/false(不是深拷贝),{},obj2,boj3...)

例子:
obj1={a:1}
obj2={a:2,b:2}
$.extend(true,obj1,obj2)
console.log(obj1)//{a:2,b:2}

jQuery 的链式调用是什么?

$(#ct).css('color','blue').show(400).hide();

jQuery 中 data 函数的作用

其使用方法为:

方法1表示为元素element的key属性添加属性值value。
方法2表示读取元素element的key属性的值。

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

$node.addClass()
$node.removeClass()
$node.show()
$node.hide()
$node.attr("id",修改)
$node.attr("src",修改)
$node.attr("title",修改)
$node.data("src",str)
$ct.prepend($node)
$ct.appen($node)
$node.remove()
$ct.empty()
$ct.html('<div class="btn"></div>')
//不包括内边距
$node.Height()
$node.Width()
//包括内边距
$node.innerHeight()
$node.innerWidth()
//包括边框
$node.outHeight()
$node.outWidth()
//包括外边距
$node.outHeight(true)
$node.outWidth(true)
$(window).scrollTop()
$node.offset()
$node.css({"font":"red","fontSize":"14px"})
$node.each(function(index,node){
    var str = $(this).text()
    $(this).text(str+str)
})
$ct.find('.item')
$ct.children()
$node.parents('.ct').find('.panel')
$node.length
$.node.index()
上一篇下一篇

猜你喜欢

热点阅读