标签: jquery alert
我想做alert(this)用于演示目的(想要在不同的地方查看代码中的'this')。
alert(this)
任何想法如何实现?
现在它只返回[object Object]?
[object Object]
答案 0 :(得分:12)
改为console.log( $(this) )。该对象将显示在JavaScript控制台中。
console.log( $(this) )
答案 1 :(得分:2)
警报(JSON.stringify(本));
这应该在浏览器中工作(不确定旧的IE版本)