所属分类:web前端开发
required 属性可以在 input、select 和 textarea 元素上使用。
您可以尝试运行以下代码来实现只读 属性 -
<!DOCTYPE html> <html> <head> <title>HTML placeholder attribute</title> </head> <body> <h2>Register</h2> <form action = "/new.php"> <input type = "text" placeholder = "Student UserName" name = "name" required/><br> <input type = "submit" value = "Submit"> </form> </body> </html>