Posted in Javascript onFebruary 05, 2013
1、bind()功能是为每个选择元素的事件绑定处理函数,其语法如下:bind(type, [data], fn)
其中type为一个或多个类型的字符串,如click或change,也可以自定义;可以被type调用的类型包括blur、focus、load、resize、scroll、unload、click、dbclick、mousedown等事件。参数data是作为event.data属性值传递对象的额外数据对象。参数fn是绑定到每个选择元素的事件中的处理函数。
2、示例代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>bind方法绑定事件</title> <script type="text/javascript" src="jquery-1.8.3.min.js"></script> <script type="text/javascript"> $(function(){ var intI=0; $("#btnBind").bind("click ",function(){ intI++; $(".clsShow").show().html("您好,欢迎来到JQuery世界!").append("<div>执行次数"+intI+"</div>"); $(this).attr("disabled","disabled");//按钮不可用 }) }) </script> </head> <body> <input id="btnBind" type="button" value="Button" class="btn"/> <div class="clsShow"></div> </body> </html>
3、效果图预览:
再点击则无反应
JQuery入门——用bind方法绑定事件处理函数应用介绍
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@