都知道这个属性是检查你 是否填写了字段也就是说咱们不用判断输入的数值是否为空的情况了
但是这个属性一定要和form配合在一起使用单独的使用是不可以实现的
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>required</title> </head> <body> <form action="" method="get"> <input type="text" required="required"> <input type="submit" value="提交"> </form> </body> </html>