很多时候,我们需要阻止一些事件的默认行为,比如有的时候一些锚链接等等。
?
兼容性相关的可以参考http://zhangyaochun.iteye.com/blog/1163331
event的知识参考http://zhangyaochun.iteye.com/blog/1439502
?
?
/* *preventDefault -- stop the default behavior of event* *@function* *@param {Event} e* */ ZYC.event.preventDefault = function(e){ if(e.preventDefault){ e.preventDefault(); }else { // fot ie e.returnValue = false; } };