摘要:
if(!$("td.selected").next()[0]){ console.log("不存在"); }else{ console.log("存在"); } 阅读全文
摘要:
event.preventDefault()方法是用于取消事件的默认行为,但此方法并不被ie支持,在ie下需要用window.event.returnValue。 例如:按tab键时禁用键盘默认事件,点击其他键时还原键盘默认事件,代码如下:(代码未考虑ie下的兼容情况) 阅读全文