我有一个事件处理程序方法,它在两种情况下执行
一个是当用户提交表单并且用户点击按钮
时我的问题是,我有一条线只有在用户提交表单
时才会执行如何知道源是Form
以下是示例
"formSubmit":function(e)
{
if(e.currentTarget == "form")// I know this is poor
{
//do somthing
}
else
{
// do other thing
}
}
任何帮助表示感谢
答案 0 :(得分:0)
我认为最好的解决方案是拥有两个处理程序:
formSubmit: function() { // assigned to form event
// form only code
// then run the common
this.formSubmitBtn();
},
formSubmitBtn: function() { // assigned to button event
// common code
}