在html5中需要属性

时间:2015-11-12 20:04:57

标签: html5 required

在html5中有一个必需的属性,我在我的代码中使用了它,但即使我将该字段留空,也不要说“此字段是必需的”。请任何人都可以回答为什么我没有弹出框说消息。以下是我的代码:

html

1 个答案:

答案 0 :(得分:1)

更改按钮以提交

<form id="contact" method="post">
<label for="firstName">First Name:</label><br>
<input type="text" name="firstName" placeholder="First Name" required><br>
<label for="lastName">Last Name:</label><br>
<input type="text" name="lastName" placeholder="Last Name"><br>
<label for="email">Email:</label><br>
<input type="email" name="email" placeholder="Email"><br>
<label for="password">Password:</label><br>
<input type="password" name="password" placeholder="Password"><br>
<input type="submit" name="submit" value="Submit">
</form>