相关链接:http://jsfiddle.net/3SXye/3/ 在代码中:有没有办法在调试的过程中:把event 相关方法和元素显示在Console里面?(chrome,或者火狐,IE),比如:
..... click:function(e){ //这里如何写代码使:e的相关方法名称,和元素显示在调试窗口里面 } .....
for(var p in e){
console.log(p);
console.log(e[p]);
}
console.info(e); 用chrome可以看到这个对象
very good!