取消浏览器默认行为

function stopDefault(e){
//W3C
if(e && e.preventDefault){
e.preventDefault();
}
//IE
else{
window.event.returnValue=fale;
}
return false;
}
原文地址:https://www.cnblogs.com/cumting/p/6715096.html