我对 preventDefault() 有疑问;我是这种用法的新手,在我的函数中,我将验证表单的错误保存在数组中并将其显示在模式窗口中,如果存在错误,我会取消链接上的操作,但我不知道如何删除此 preventDefault当我在“其他”时
谢谢
if(array.length != 0){
//for cancel action on the link
$('body').on('click','div.linkGet a',function(e){
e.preventDefault();
});
//tranform the array in html and put it in the html
$.colorbox({
href:"../../tpl/validation-form.twig",
width:450,
onComplete:function(){
$(array).each(function(index, item) {
$("#wrapperValidationForm ul").append($("<li>").html(item));
$.colorbox.resize();
});
}
});
}
else{
return true;
}