我在 Opera 和 Safari 上的 HTML5 验证有问题。
在 Opera 中,消息气泡不显示任何文本,而在 Safari 中,当我按下提交按钮时不会发生验证。在 IE、Mozilla 或 Chrome 中,验证工作得很好。谁能告诉为什么会这样?
我在表单中的输入具有 html5 标准验证,具有 required 属性,仅此而已。
我试图在网上搜索这个主题,但没有找到它。
请帮我。
谢谢
<form class="sign-in-form" action="" method="post">
<li>
<label>
<span>Username</span>
<input placeholder="Please enter your username" name="username" type="text" tabindex="1" title="It must contain the username that you have chosen at registration" required autofocus>
</label>
</li>
<li>
<label>
<span>Password</span>
<input placeholder="Please enter your password" name="password" type="password" tabindex="2" title="It must contain the password that you have chosen at registration" required>
</label>
</li>
<li>
<button name="sign-in-btn" type="submit" id="sign-in-submit">Sign In</button>
</li>
</form>