当我提交表单时,会显示警告但页面重定向后。
我点击后有提交按钮的呼叫功能。 警报将显示,表格将被提交 请给我一个验证表格的想法
//non JPG, convert to JPG
if($_FILES[$file_field]['type'] != 'image/jpeg') {
// create image resource
$img = imagecreatefromjpeg($_FILES[$file_field]['tmp_name']);
// store to directory
imagejpeg($img, $path.$newname, $quality); // quality is between 0 (worst) to 100 (best), but this is not mandatory, you can skip quality parameter
// free memory associated with image resource
imagedestroy($img);
// success, return filepath and name
$out['filepath'] = $path;
$out['filename'] = $newname;
return $out;
}
答案 0 :(得分:0)
您可以使用验证JS“jquery.validate.min.js”进行jquery验证。这很简单。您想要演示,可以查看它http://www.sitepoint.com/basic-jquery-form-validation-tutorial/。希望这对你有所帮助,谢谢!
答案 1 :(得分:0)
如果任何字段为空,则返回false的代码如下。
sort
你的代码是用js编写的,你要求jquery。对于jquery使用上面的答案。