jquery max验证不起作用

时间:2017-11-17 08:45:09

标签: jquery validation

我使用过jQuery验证但是max无效。

<html>
<head>
</head>

<body>
<form action="lol.php" method="post">
Username: <input type="text" name="username"><br>
Password: <input type="text" name="password"><br>
<input type="submit" name="submit">
</form>


<?php 
if( isset($_POST['submit'])){

//connecting to a databse
$conn = mysqli_connect("localhost","root","");
mysqli_select_db("test",$conn);

if($conn){
        echo 'connected';
    }
    else {
        die('failed to connect');
    }

$sql="INSERT INTO users(username,password) VALUES ('" . $_POST['username'] . "','" . $_POST['password'] . "')"; 

mysql_query($sql,$conn);

mysqli_close($conn);
};  
?>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我认为你对max的含义感到困惑。这意味着igst字段的值必须是小于或等于2(0,1,2)的数字

https://jsfiddle.net/xzua16f8/

如果我没错,你要找的是maxlength,这意味着这个数字可能不超过2位。

https://jsfiddle.net/xzua16f8/1/

无论如何,maxmaxlength都可以正常工作,你可以查看小提琴。