我是javascript的新手,我希望在我的对象中看到所有变量
我这样做:
function configModal(data,buttonDatas){
...
alert(data.type);
...
}
但我有这个:
[object Object]
THX
答案 0 :(得分:1)
只需使用stringigy
,
alert(JSON.stringify(data.type));
或使用console.log显示对象
console.log(data.type);
答案 1 :(得分:0)
尝试类似这样的东西[Firefox => ctrl + shift + k]
console.log(data.type)
参考
https://developer.mozilla.org/en-US/docs/Tools/Web_Console
为firefox
尝试firebughttps://getfirebug.com/wiki/index.php/Console_Panel
Google Chrome