标签:cancel bubble opp com java bsp value window htm
JS停止冒泡
function myfn(e){ window.event? window.event.cancelBubble = true : e.stopPropagation(); }
js阻止默认行为
function myfn(e){ window.event? window.event.returnValue = false : e.preventDefault(); }
原文:
http://caibaojian.com/javascript-stoppropagation-preventdefault.html
标签:cancel bubble opp com java bsp value window htm
原文地址:http://www.cnblogs.com/xiangsj/p/6163834.html