目录搜索
速查表核心jQuery(selectorjQuery(htmljQuery(callback)jQuery.holdReady(hold)each(callback)size()lengthselectorcontextget([index])index([selector|element])data([key]removeData([name|list])jQuery.data(elementqueue(elementdequeue([queueName])clearQueue([queueName])jQuery.noConflict([extreme])选择器#idelement.class*selector1ancestor descendantparent > childprev + nextprev ~ siblings:first:last:not(selector):even:odd:eq(index):gt(index):lt(index):lang(language):header:animated:focus:root:target:contains(text):empty:has(selector):parent:hidden:visible[attribute][attribute=value][attribute!=value][attribute^=value][attribute$=value][attribute*=value][selector1][selector2][selectorN]:first-child:first-of-type:last-child:last-of-type:nth-child:nth-last-child():nth-last-of-type():nth-of-type():only-child:only-of-type:input:text:password:radio:checkbox:submit:image:reset:button:file:hidden:enabled:disabled:checked:selected属性attr(name|pro|keyremoveAttr(name)prop(name|pro|keyremoveProp(name)addClass(class|fn)removeClass([class|fn])toggleClass(class|fn[html([val|fn])text([val|fn])val([val|fn|arr])筛选eq(index|-index)first()last()hasClass(class)filter(expr|obj|ele|fn)is(expr|obj|ele|fn)map(callback)has(expr|ele)not(expr|ele|fn)slice(startchildren([expr])closest(exprfind(expr|obj|ele)next([expr])nextAll([expr])nextUntil([exp|ele][parent([expr])parents([expr])parentsUntil([exp|ele][prev([expr])prevAll([expr])prevUntil([exp|ele][siblings([expr])add(expr|ele|html|obj[andSelf()contents()end()文档处理append(content|fn)appendTo(content)prepend(content|fn)prependTo(content)after(content|fn)before(content|fn)insertAfter(content)insertBefore(content)wrap(html|ele|fn)unwrap()wrapAll(html|ele)wrapInner(html|ele|fn)replaceWith(content|fn)replaceAll(selector)empty()remove([expr])detach([expr])clone([Even[CSScss(name|pro|[jQuery.cssHooksoffset([coordinates])position()scrollTop([val])scrollLeft([val])height([val|fn])width([val|fn])innerHeight()innerWidth()outerHeight([options])outerWidth([options])事件ready(fn)on(eventsoff(eventsbind(typeone(typetrigger(typetriggerHandler(typeunbind(typelive(typedie(typedelegate(selundelegate([selhover([overtoggle(fnblur([[data]change([[data]click([[data]dblclick([[data]error([[data]focus([[data]focusin([data]focusout([data]keydown([[data]keypress([[data]keyup([[data]mousedown([[data]mouseenter([[data]mouseleave([[data]mousemove([[data]mouseout([[data]mouseover([[data]mouseup([[data]resize([[data]scroll([[data]select([[data]submit([[data]unload([[data]效果show([speedhide([speedslideDown([speed]slideUp([speedslideToggle([speed]fadeIn([speed]fadeOut([speed]fadeTo([[speed]fadeToggle([speedanimate(paramstop([cle]delay(durationfinish( [queue ] )jQuery.fx.offjQuery.fx.intervalAjaxjQuery.ajax(urlload(urljQuery.get(urljQuery.getJSON(urljQuery.getScript(urljQuery.post(urlajaxComplete(callback)ajaxError(callback)ajaxSend(callback)ajaxStart(callback)ajaxStop(callback)ajaxSuccess(callback)jQuery.ajaxPrefilter([type]jQuery.ajaxSetup([options])serialize()serializeArray()工具jQuery.supportjQuery.browserjQuery.browser.versionjQuery.boxModeljQuery.each(objectjQuery.extend([deep]jQuery.grep(arrayjQuery.makeArray(obj)jQuery.map(arrayjQuery.inArray(valjQuery.toArray()jQuery.sub()jQuery.when(deferreds)jQuery.merge(firstjQuery.unique(array)jQuery.parseJSON(json)jQuery.parseXML(data)jQuery.noopjQuery.proxy(functionjQuery.contains(containerjQuery.isArray(obj)jQuery.isFunction(obj)jQuery.isEmptyObject(obj)jQuery.isPlainObject(obj)jQuery.isWindow(obj)jQuery.isNumeric(value)jQuery.type(obj)jQuery.trim(str)jQuery.param(objjQuery.error(message)$.fn.jquery事件对象event.currentTargetevent.dataevent.delegateTargetevent.isDefaultPrevented()event.isImmediatePropagationStopped()event.isPropagationStopped()event.namespaceevent.pageXevent.pageYevent.preventDefault()event.relatedTargetevent.resultevent.stopImmediatePropagation()event.stopPropagation()event.targetevent.timeStampevent.typeevent.which延迟对象def.done(donCaldef.fail(failCal)def.isRejected()def.isResolved()def.reject(args)def.rejectWith(contextdef.resolve(args)def.resolveWith(contextdef.then(doneCaldef.progress([type]def.pipe([donFil]def.always(alwCaldef.notify(args)def.notifyWith(contextdef.progress(proCal)def.state()回调函数callbacks.add(callbacks)callbacks.disable()callbacks.empty()callbacks.fire(arguments)callbacks.fired()callbacks.fireWith([context][callbacks.has(callback)callbacks.lock()callbacks.locked()callbacks.remove(callbacks)jQuery.callbacks(flags)关于关于jQuery API 文档提交bug及获取更新其它正则表达式速查表
文字

返回值: Elementevent.delegateTarget

V1.7概述

当currently-called的jQuery事件处理程序附加元素。

此属性是最经常有用是通过过.delegate() 或.on()附加委派的事件,事件处理程序附加在正在处理的元素的祖先上。它可用于,例如,指明委派识别和删除事件处理程序。 This property is most often useful in delegated events attached by .delegate() or .on(), where the event handler is attached at an ancestor of the element being processed. It can be used, for example, to identify and remove event handlers at the delegation point.

对于非授权的事件处理程序,直接连接到一个元素,event.delegateTarget 总是等价于event.currentTarget.

示例

描述:

When a button in any box class is clicked, change the box's background color to red.

jQuery 代码:
$(".box").on("click", "button", function(event) {
  $(event.delegateTarget).css("background-color", "red");
});
上一篇:下一篇: