Java中的if and else语句不起作用

时间:2018-09-05 16:21:31

标签: javascript

想要在单击按钮时运行此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');
            }
        });
      });

1 个答案:

答案 0 :(得分:2)

要检查一个值是否等于另一个值,应使用=====检查变量是否也属于同一类型。 =是用于归因。

if ($("#cevent").valid() == false)