想要在单击按钮时运行此javascript,如果表单上的错误检查if语句并停止,如果没有错误则执行else语句......
$(document).ready(function () {
$('#continueToAttachments').on('click', function() { //on click button
if ($("#cevent").valid() = false) { // if errors stop the user from moving forward
return;
} else { // expecting this to run if there are no errors in the form
$('#Event-Information').removeClass('w--tab-active');
$('#Attachments').addClass('w--tab-active');
$('#Event-Information-Tab').removeClass('w--current');
$('#Attachments-Tab').addClass('w--current');
}
});
});
答案 0 :(得分:2)
要检查一个值是否等于另一个值,应使用==
或===
检查变量是否也属于同一类型。 =
是用于归因。
if ($("#cevent").valid() == false)