function clickLi(e){ //兼容ie 火狐 chrome e = e || window.event; e.target = e.target || e.srcElement; alert(e.target.nodeName); }
Text