必填字段html 5不能在Android Web浏览器上工作

时间:2014-03-29 21:03:05

标签: android html html5

我试图弄清楚为什么它对我来说不适用于代码

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>myTestForm</title>
</head>
<body>
<form action="ok" method="post" id="myform">
<p>
<input name="user_name" type="text" required id="user_name">
 </p>
<p>
<input name="user_password" type="password" required id="user_password">
</p>
<input name="sumbit" type="submit" id="sumbit" value="send">
</form>
</body>
</html>

我尝试使用Chrome或Android Dolphin浏览器进行测试,但它不起作用 它仅适用于普通计算机在大多数浏览器中

任何人都知道它为什么不起作用?有没有办法解决这个问题

1 个答案:

答案 0 :(得分:1)

必需属性仅适用于Android版本&lt; 2.3。

http://www.wufoo.com/html5/attributes/09-required.html

使用jQuery进行基本的javascript验证:

$('[required]').on('blur', function () {
    if (!$(this).val().length) { // check if the value is empty
        // Could do an alert or something else
    }
});