我使用过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>
答案 0 :(得分:0)
我认为你对max
的含义感到困惑。这意味着igst
字段的值必须是小于或等于2(0,1,2)的数字
https://jsfiddle.net/xzua16f8/
如果我没错,你要找的是maxlength
,这意味着这个数字可能不超过2位。
https://jsfiddle.net/xzua16f8/1/
无论如何,max
和maxlength
都可以正常工作,你可以查看小提琴。