js阻止事件冒泡和标签默认行为

来源:互联网 发布:mac 彻底卸载软件 编辑:程序博客网 时间:2024/06/13 21:39
////阻止事件冒泡函数和 // 阻止默认浏览器动作(W3C) 要一起使用效果好<a href="/Scripts/newfiber_js_lib/images/1.jpg" ><div onclick="historyImg(this, event)" class="txt_more">更多</div></a> function historyImg(dom,e) {        stopBubble(e);        stopDefault(e);    } //阻止事件冒泡函数    function stopBubble(e) {        if (e && e.stopPropagation)            e.stopPropagation()        else            window.event.cancelBubble = true    }    // 阻止默认浏览器动作(W3C)    function stopDefault(e) {        // 阻止默认浏览器动作(W3C)        if (e && e.preventDefault) {            e.preventDefault();        } else {            // IE中阻止函数器默认动作的方式            window.event.returnValue = false;        }        return false;    }

js阻止事件冒泡和标签默认行为

原创粉丝点击