DOm操作/事件/现象/属性

3. DOM操作
a.创建元素$("<li title='111'>阴阳师</li>")
b.插入节点$("h3").append("<b>我不喜欢玩游戏!</b>");c.删除节点$("ol li" ).eq(1).remove();
d.复制节点$(this).clone(true).appendTo("ol");
e.替换节点$("h3").replaceWith("<b>我最讨厌哪个游戏? </b>");f.包裹节点$("li").wrapAll("<b></b>");
4.事件
a. Clickb. Change
c. Trigger("change")
d. Mouseover Mouseout Mousemovee. hover
f. Focus Blur
g. Keyup e.which e.pageY e.pagex
5.动画效果
a.基本动画(hide show; fadeOut fadeln; slideUp slideDown)
b.自定义动画
$(this).animate({left:"400px",height:"200px",opacity:1},3000)
.animate({top:"800px",width: "200px"},300o)
.fadeOut("5000")
6.常用方法及属性
a. Each(function()0)
b. Attr prop removeAttr removeProp
c. toggleClass addClass removeClass
d. Siblings()
e. Find()
f. Eq()
g. .trigger("change")===.change()
h. val() text() html()
i. window.onload和 $(document).ready(function()})区别
j. $(selector).is(":visible")
k. Stop()
$(selector).stop(stopAll,goToEnd)
//stopAll可选。规定是否停止被选元素的所有加入队列的动画
//goToEnd可选。规定是否允许完成当前的动画。该参数只能在设置了stopAll参数时使用。
7.现象
a.冒泡行为event.stopPropagation();b. 默认行为event.preventDefault();c. CSs未排队和排队
d.自定义单个动画和多重动画连续滑动问题stop
8.属性
a. this.defaultValue
b. this.myTitle = this.title;

上一篇:jQuery过滤选择器


下一篇:02-DOM