java学习

java学习

 

jquery自定义事件

<html>
<head>
<style type="text/css">
*{margin:0;padding:0;}    
body { font-size: 13px; line-height: 130%; padding: 60px; }
p {width:200px;background:#888;color:white;height:16px;}
</style>
<script src="../../scripts/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function(){
       $('#btn').bind("myClick", function(){
                     $('#test').append("<p>我的自定义事件.</p>");
              });
       $('#btn').click(function(){
            $(this).trigger("myClick");
       }).trigger("myClick");
    })
</script>
</head>
<body>
<button id="btn">点击我</button>
<div id="test"></div>
</body>
</html>

<html>
<title></title>
<style type="text/css">
*{margin:0;padding:0;}    
body { font-size: 13px; line-height: 130%; padding: 60px; }
p {width:200px;background:#888;color:white;height:16px;}
</style>
<script src="../../scripts/jquery-1.3.1.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function(){
        $('#old').bind("click", function(){
            $("input").trigger("focus");
        });
        $('#new').bind("click", function(){
            $("input").triggerHandler("focus");
        });
        $("input").focus(function(){
            $("body").append("<p>focus.</p>");
        })
    })
</script>
</head>
<body>
<button id="old">trigger</button>
<button id="new">triggerHandler</button>
<input />
</body>
</html>

posted on 2013-03-19 14:01 杨军威 阅读(198) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 

导航

统计

常用链接

留言簿

随笔档案

搜索

最新评论

阅读排行榜

评论排行榜