File type validation with Javascript

后端 未结 8 905
梦谈多话
梦谈多话 2020-12-09 22:52

I have a question regarding to JavaScript validation. I am validaing the whenever my scripts runs, it validates but also the action

8条回答
  •  长情又很酷
    2020-12-09 23:01

    The return value of the submit handler affects the submission.

    onsubmit="return Checkfiles();"
    

    This is basically saying:

    form.onsubmit = function () { return Checkfiles(); };
    

提交回复
热议问题