码迷,mamicode.com
首页 > 其他好文 > 详细

javscript阻止和恢复默认事件、阻止和恢复event.preventDefault()

时间:2014-11-25 12:44:19      阅读:2277      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   sp   on   div   log   

有时候我们需要阻止掉浏览器的默认事件,但后面某个时候又需要用到默认事件:

看下面代码,有一个连接

<a href="http://sina.cn/" class="test">新浪</a>

我们先来点击链接,阻止默认事件 不会跳转

$(".s").click(function() {
  event.preventDefault();
});

我们再来恢复默认事件:  再次点链接,可以跳转了

$(".test").click(function() {
        event.preventDefault()
    }).off(‘click‘).click(function() {
        console.log("OK")
    });

可以放到控制台运行看看。

javscript阻止和恢复默认事件、阻止和恢复event.preventDefault()

标签:style   blog   http   io   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/heqhbk/p/4120519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!