jQuery技术

jQuery入门之(3)-事件

字号+ 作者: 来源: 2014-11-16 22:49 我要评论( )

jQuery 对事件的支持主要包括: * bind()--为事件绑定处理程序,如: $(p).bind(mouseenter mouseleave, function(e){ $(this).toggleClass (over); }); * unbind()--注销绑定在事件上的处理程序,如: $(document).un

jQuery对事件的支持主要包括:

  • bind()–为事件绑定处理程序,如:
        $("p").bind("mouseenter mouseleave", function(e){
    
    $(this).toggleClass("over");
    
        });
  • unbind()–注销绑定在事

    件上的处理程序,如:$(document).unbind(‘ready’);,如不给参数,则清除所有事件处理程序。

    $("#unbind").click(function () {
    
    $("#theone").unbind('click', aClick);
    
    });
  • trigger()–触发某类事件。
    $("button:first").trigger('click');
  • triggerHandler

    ()–触发某类事件,但不触发默认的事件处理逻辑,比如a的定向。

    $("input").triggerHandler("focus");
  • one()--为事件

    绑定只能被触发一次的处理程序。

        $("div").one
    
    ("click", function(){
    
        });
  • ready()/click()/change

    ()/toggle(fn,fn)/dblclick()……各种常规事件的快捷方式,xxx(fn)为绑定处理程序,xxx()为触发事

jQuery 1.2的事件支持命名空间,

  $("div").bind("click", 

function(){ alert("hello"); });

$("div").bind("click.plugin", function(){ alert

("goodbye"); });

$("div").trigger("click!"); // alert("hello") 

only

DEMO:
<!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>
    <title>Events</title>
    <script src="../scripts/jquery-

1.2.3.intellisense.js" type="text/javascript"></script>
    <style type="text/css">
        textarea

{
            height: 118px;

width: 280px;
        }


    </style>
    <script type="text/javascript">
        $(function(){
            $('textarea').bind

('propertychange',function(){

             $('#result').html

($('textarea').val())
            }
            ).bind('change',function(){
                alert($('textarea').val());

         });
        });

    </script>
</head>
<body>
    <textarea></textarea>
    <div id='result'></div>
</body>
</html>
运行效果如下:

jquery5

Reference:http://docs.jquery.com/Events

class="postTitle">下篇:

target="_self">jQuery入门[4]-链式代码

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • jQuery+css实现的换页标签栏效果

    jQuery+css实现的换页标签栏效果

    2016-02-05 13:02

  • 后台管理区域及分离、Js压缩、css、jquery扩展

    后台管理区域及分离、Js压缩、css、jquery扩展

    2016-01-19 09:06

  • CSS小技巧收藏

    CSS小技巧收藏

    2016-01-16 18:19

  • jQuery 顺便学习下CSS选择器 奇偶匹配nth

    jQuery 顺便学习下CSS选择器 奇偶匹配nth

    2015-12-24 08:34

网友点评
t