A.next() B.siblings() C.nextAll() D.prev()
A.$("p").parent() B.$("p").parent(".selected") C.$("p").parent("selected") D.$("p").parentAll(".selected")
A.和on()沒什么區(qū)別 B.可以刪除已綁定的事件 C.給元素綁定一次性事件 D.可以代替live()使用
A.$("ul").prepend("<li>內(nèi)容</li>") B.$("ul").before("<li>內(nèi)容</li>") C.$("ul").after("<li>內(nèi)容</li>") D.$("ul").append("<li>內(nèi)容</li>")
A.$a.append(""); B.$a.prepend(""); C.$a.append(document.createElement("span")); D.$a.append($(""));
A.event.offset().top B.event.clientY C.event.offsetTop D.event.pageY
A.不執(zhí)行 B.以上都不正確 C.當響應(yīng)就緒后對響應(yīng)進行處理 D.在等待服務(wù)器響應(yīng)時執(zhí)行其他腳本