我在 1 页中有 2 个表格form.php
。在第一种形式中,我有 1 个输入字段和 1 个文本字段。第二个表单我有一个上传图片按钮,我用它来上传而不重定向,所以onchange
我提交了那个表单。
但是,如果用户没有选择任何图像,则最终表单不应提交。
这是我的代码:
$("#storyform").validate({
rules: {
story: {
required: true,
maxlength: 250
},
place: "required"
},
messages: {
story: {
required: "Please write your story",
maxlength: $.format("At Max {0} characters !")
},
place: "Please write your place"
},
errorElement: "span",
wrapper: "span" // a wrapper around the error message
});