A.$("#demo").animate({opacity:0},200) B.$("#demo").fadeOut("fast") C.$("#demo").animate({height:0},300) D.$("#demo").fadeTo("fast",0)
A.$("p").on("click",function(){alert($(this).text())}) B.$("p").on("onclick",function(){alert($(this).text())}) C.$("p").on("click",function(){alert(this.text())}) D.以上都不正确
A.css属性对象 B.回调函数 C.动画执行速度 D.停止动画
A.toggle() B.toggleShow() C.fadeToggle() D.slideToggle()
A.attr("title","第一个段落") B.attr("title") C.Attr("title") D.removeAttr("title")
A.contains() B.toggle() C.add( ) D.remove()
A.preventDefault() B.stopPropagation() C.target D.type
A.在同一个页面中只允许使用一次$(document).ready()事件 B.是页面加载方法 C.在DOM载入就绪时立即调用fn函数 D.这个方法是window.load事件的替代方法