gpt4 book ai didi

android - 必填字段 html 5 不适用于 android Web 浏览器

转载 作者:行者123 更新时间:2023-11-29 21:11:17 25 4
gpt4 key购买 nike

我想弄清楚为什么它对我的代码不起作用

<!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 浏览器对其进行测试,但它不起作用它仅适用于普通计算机在大多数浏览器中

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

最佳答案

required 属性仅适用于 android 版本 < 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
}
});

关于android - 必填字段 html 5 不适用于 android Web 浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22736874/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com