I'm trying to submit a specific form Using the following command:

$("#formName").submit();

Definitely that's working, but, I have required fields into the form, and if those're empties it's not throwing the alert message. Any ideas around that?

有帮助吗?

解决方案

Surround your $("#formName").submit(); in an if statement that checks the (length of) the values in your required fields, that way the form will only submit if those values are present.

You could go one step up and use separate methods for validation that return a boolean, and only if all validation methods return true do you submit the form.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top