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.回調函數(shù) C.動畫執(zhí)行速度 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函數(shù) D.這個方法是window.load事件的替代方法