我有一个来自 metronic 主题的向导,我试图调用一个函数来检查我的数组是否包含重复项。
如果我删除这部分代码,它可以正常工作。
console.log(this.checkIfArrayIsUnique());
代码
var wizard = (<any>$('#m_wizard')).mWizard();
//== Validation before going to next page
wizard.on('change', function(wizard) {
if(wizard.getStep() > 2){
console.log(this.checkIfArrayIsUnique());
}
mApp.scrollTop();
})
现在我的 checkIfArrayIsUnique() 只是一个虚拟函数
checkIfArrayIsUnique()
{
return true;
}
我如何在“更改”事件之外调用方法?所以我可以通过我的数组运行并确认它没有任何重复项。