目录搜索
jQuery 1.4.4 速查表核心jQuery核心函数jQuery(expressionjQuery(htmljQuery(htmljQuery(elements)jQuery()jQuery(callback)jQuery对象访问each(callback)size()lengthcontextget()get(index)index([subject])selector数据缓存data([name])data(namedata(obj)removeData(name)jQuery.data(elementjQuery.data([element]队列机制queue(name)queue(namequeue(namedequeue(name)clearQueue([queueName])插件机制jQuery.extend(object)jQuery.fn.extend(object)多库共存jQuery.noConflict()jQuery.noConflict(extreme)选择器基本#idelement.class*selector1层级ancestor descendantparent > childprev + nextprev ~ siblings基本(过滤器):first:last:not:even:odd:eq:gt:lt:header:animated内容(过滤器):contains:empty:has:parent可见性(过滤器):hidden:visible属性[attribute][attribute=value][attribute!=value][attribute^=value][attribute$=value][attribute*=value][selector1][selector2][selectorN]子元素:first-child:last-child:nth-child:only-child表单:input:text:password:radio:checkbox:reset:submit:image:button:file:hidden表单对象属性:checked:disabled:enabled:selected属性属性attr(name)attr(properties)attr(keyattr(keyremoveAttr(name)CSS类addClass(class)addClass(function(indexremoveClass([class])removeClass(function(indextoggleClass(class)toggleClass(classtoggleClass(function(indexHTML代码html()html(val)html(function(index文本text()text(val)text(function(indexval()val(val)val(array)val(function(index筛选过滤eq(index)first()last()hasClass(class)filter(expr)filter(fn)is(expr)map(callback)has(expr)not(expr)slice(start查找children([expr])closest(exprfind(expr)next([expr])nextAll([expr])nextUntil([expr])offsetParent()parent([expr])parents([expr])parentsUntil([expr])prev([expr])prevAll([expr])prevUntil([expr])siblings([expr])串联add(exprandSelf()contents()end()文档处理内部插入append(content)append(function(indexappendTo(content)prepend(content)prepend(function(indexprependTo(content)外部插入after(content)after(function)before(content)before(function)insertAfter(content)insertBefore(content)包裹wrap(html)wrap(elem)wrap(fn)unwrap()wrapAll(html)wrapAll(elem)wrapInner(html)wrapInner(elem)wrapInner(fn)替换replaceWith(content)replaceAll(selector)删除empty()remove([expr])detach([expr])复制clone()clone(true)CSSCSScss(name)css(properties)css(namecss(name位置offset()offset(coordinates)position()scrollLeft()scrollLeft(val)scrollTop()scrollTop(val)尺寸height()height(val)width()width(val)innerHeight()innerWidth()outerHeight(options)outerWidth(options)事件页面载入ready(fn)事件处理bind(typeone(typetrigger(typetriggerHandler(typeunbind([type]事件委派live(typedie([type]delegate(selectorundelegate()事件切换hover(overtoggle(fn事件blur()blur(fn)change()change(fn)click()click(fn)dblclick()dblclick(fn)error()error(fn)focus()focus(fn)focusin(fn)focusout(fn)keydown()keydown(fn)keypress()keypress(fn)keyup()keyup(fn)load(fn)mousedown(fn)mousemove(fn)mouseout(fn)mouseover(fn)mouseup(fn)resize(fn)scroll(fn)select()select(fn)submit()submit(fn)unload(fn)效果基本show()show(speedhide()hide(speedtoggle()toggle(switch)toggle(speed滑动slideDown(speedslideUp(speedslideToggle(speed淡入淡出fadeIn(speedfadeOut(speedfadeTo(speedfadeToggle(speed自定义animate(paramsanimate(paramsstop([clearQueue]delay(duration设置jQuery.fx.offjQuery.fx.intervalAJAXAJAX请求jQuery.ajax([options])load(urljQuery.get(urljQuery.getJSON(urljQuery.getScript(urljQuery.post(urlAJAX事件ajaxComplete(callback)ajaxError(callback)ajaxSend(callback)ajaxStart(callback)ajaxStop(callback)ajaxSuccess(callback)其它jQuery.ajaxSetup([options])serialize()serializeArray()工具浏览器及特性检测jQuery.supportjQuery.browserjQuery.browser.versionjQuery.boxModel数组和对象操作jQuery.each(objectjQuery.extend([deep]jQuery.grep(arrayjQuery.inArray(valuejQuery.makeArray(obj)jQuery.toArray()jQuery.map(arrayjQuery.merge(firstjQuery.unique(array)jQuery.parseJSON(json)函数操作jQuery.noopjQuery.proxy(function测试操作jQuery.contains(containerjQuery.isArray(obj)jQuery.isFunction(obj)jQuery.isEmptyObject(obj)jQuery.isPlainObject(obj)jQuery.isWindow(obj)jQuery.type(obj)字符串操作jQuery.trim(str)URL解析jQuery.param(obj插件编写jQuery.error(message)关于关于jQuery API 1.4.4中文版关于jQuery 1.4.1中文版关于jQuery 1.3 版翻译关于jQuery 1.2 版翻译提交bug及获取更新
文字

返回值:jQuerybind(type, [data], fn)

概述

为每个匹配元素的特定事件绑定事件处理函数。

.bind() 方法是用于往文档上附加行为的主要方式。所有JavaScript事件对象,比如focus, mouseover, 和 resize,都是可以作为type参数传递进来的。
		
jQuery还提供了一些绑定这些标准事件类型的简单方式,比如.click()用于简化.bind('click')。一共有以下这些:blur, focus, focusin, focusout, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error 。

任何作为type参数的字符串都是合法的;如果一个字符串不是原生的JavaScript事件名,那么这个事件处理函数会绑定到一个自定义事件上。这些自定义事件绝对不会由浏览器触发,但可以通过使用.trigger()或者.triggerHandler()在其他代码中手动触发。

如果type参数的字符串中包含一个点(.)字符,那么这个事件就看做是有命名空间的了。这个点字符就用来分隔事件和他的命名空间。举例来说,如果执行 .bind('click.name', handler) ,那么字符串中的 click 是事件类型,而字符串 name 就是命名空间。命名空间允许我们取消绑定或者触发一些特定类型的事件,而不用触发别的事件。参考unbind()来获取更多信息。

当一个事件传到一个元素上,所有绑定在上面的针对哪个事件的处理函数都会触发。如果注册了多个事件处理函数,总是按照绑定的顺序依次触发。当所有绑定的事件处理函数执行完毕后,事件继续沿着普通的事件冒泡途径上浮。

.bind()最基本的用法是:

<pre>
$('#foo').bind('click', function() {
  alert('User clicked on "foo."');
});
</pre>

这个代码能使ID为foo的元素响应click事件。当用户点击元素内部之后,就会弹出一个警告框。

'''多个事件'''

依次可以绑定多个事件类型,每个事件类型用空格分隔:

<pre>
$('#foo').bind('mouseenter mouseleave', function() {
  $(this).toggleClass('entered');
});
</pre>

这个代码让一个&lt;div id="foo"&gt;元素(初始情况下class没有设置成entered),当鼠标移进去的时候,在class中加上entered,而当鼠标移出这个div的时候,则去除这个class值。

在jQuery 1.4中,我们也可以通过传入一个映射对来一次绑定多个事件处理函数:

<pre>
$('#foo').bind({
  click: function() {
    // do something on click
  },
  mouseenter: function() {
    // do something on mouseenter
  }
});
</pre>

'''事件处理函数'''

fn这个参数接受一个回调函数,就像先前展示的那样。在这个事件处理函数内部,this指向这个函数绑定的DOM元素。如果要让这个元素变成jQuery对象来使用jQuery的方法,可以把这个对象传入 $() 重新封装。比如说:

<pre>$('#foo').bind('click', function() {
  alert($(this).text());
});
</pre>

这个代码执行之后,当用户点击了ID为foo的元素内部之后,他的文本内容就会出现在一个警告框中。

'''事件对象'''

fn这个参数的回调函数还可以接受一个参数。当这个函数被调用时,一个JavaScript事件对象会作为一个参数传进来。

这个事件对象通常是没有必要且可以省略的参数,因为当这个事件处理函数绑定的时候就能够明确知道他在触发的时候应该做些什么,通常就已经可以获得充分的信息了。然而在有些时候,在事件初始化的时候需要获取更多关于用户环境的信息。可以参考完整的关于<a href="/category/events/event-object/">事件对象</a>的内容(英文)。

在事件处理函数内返回false就等价于执行事件对象上的.preventDefault()和.stopPropagation()。

可以像这样在事件处理函数内使用事件对象:

<pre>$(document).ready(function() {
  $('#foo').bind('click', function(event) {
    alert('The mouse cursor is at ('
      + event.pageX + ', ' + event.pageY + ')');
  });
});
</pre>

注意,这个参数添加到了一个匿名函数上。这个代码可以让用户在点击ID为foo的元素时,报告鼠标点击时相对于页面的坐标。

'''传递事件数据'''

可选的第二个参数data通常用的很少。如果提供了这个参数,那么我们就能把一些附加信息传递给事件处理函数了。这个参数有个很好的用处,就是处理闭包带来的问题。比如我们有两个事件处理函数要指向同一个内部变量:

<pre>var message = 'Spoon!';
$('#foo').bind('click', function() {
  alert(message);
});
message = 'Not in the face!';
$('#bar').bind('click', function() {
  alert(message);
});
</pre>

由于这两个函数在他们各自的环境中都有message,所以触发时显示的消息都是 Not in the face! 。变量值被改变了。为了回避这个问题,我们可以把message变量作为data参数传递进去:

<pre>var message = 'Spoon!';
$('#foo').bind('click', {msg: message}, function(event) {
  alert(event.data.msg);
});
message = 'Not in the face!';
$('#bar').bind('click', {msg: message}, function(event) {
  alert(event.data.msg);
});
</pre>

这时在函数内部不再直接指向这个变量了;取而代之的是按值传递给了data参数,他能保持绑定事件时的值。第一个函数现在会显示Spoon!,而第二个则显示Not in the face!

注意,如果这个对象按引用传递给了函数,那么将会使情况变得极其复杂。

另外,可以参考.trigger()方法来了解如何在事件触发时传递数据,而不是在事件绑定的时候传递数据。

在jQuery 1.4中,不再支持把数据以及事件附加到一个object、embed或者applet元素上面。因为当往Java applet元素上附加数据时,会触发一个严重错误警告。
		

用法 V1.4.3新增

bind(Type, [Data], false)

将第三个参数设置为false会使默认的动作失效。

参数

typeString

含有一个或多个事件类型的字符串,比如"click"或"submit",还可以是自定义事件名。

data (可选)Object

作为event.data属性值传递给事件对象的额外数据对象

fnFunction

绑定到每个匹配元素的事件上面的处理函数

示例

描述:

当每个段落被点击的时候,弹出其文本。

jQuery 代码:
$("p").bind("click", function(){
  alert( $(this).text() );
});

描述:

你可以在事件处理之前传递一些附加的数据。

jQuery 代码:
function handler(event) {
  alert(event.data.foo);
}
$("p").bind("click", {foo: "bar"}, handler)

描述:

通过返回false来取消默认的行为并阻止事件起泡。

jQuery 代码:
$("form").bind("submit", function() { return false; })

描述:

通过使用 preventDefault() 方法只取消默认的行为。

jQuery 代码:
$("form").bind("submit", function(event){
  event.preventDefault();
});

描述:

通过使用 stopPropagation() 方法只阻止一个事件起泡。

jQuery 代码:
$("form").bind("submit", function(event){
  event.stopPropagation();
});
上一篇:下一篇: