当我点击一个按钮时,我调用 changeProfil 方法:
'tap div:first-of-type button:first-of-type': 'changeProfil'
我想知道传递给这个函数的参数是什么。我试过了:
changerProfil: function(e) {
alert(JSON.stringify(e))
}
但我收到此错误:“json.stringify 无法序列化循环结构”
另外,我不能做console.log。我怎么知道传递的参数是什么?