我正在验证电子邮件与knockout js和throughing错误,而如果电子邮件不是有效的,在同一时间,我想调用一个函数调用,我试图做这样的事情,但不工作,请有人帮助我知道确切的方式来做这一点
email: ko.observable((ref = REGISTRY.unsavedUser) != null ? ref.email : void 0).extend({
required: true,
email: {
params: true,
message: 'Please enter a valid emails.',
},
validation: {
validator: testFuc
},
focus:true
}),
并且testFuc为
var testFun = function() {
alert();
}
1条答案
按热度按时间lvjbypge1#
与函数名
testFun
不匹配还要确保在敲除脚本之前定义函数