html5:复选框/收音机中必需的属性的含义

前端之家收集整理的这篇文章主要介绍了html5:复选框/收音机中必需的属性的含义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在表单提交时,如何根据需要标记一个复选框/单选按钮?

灵感来源:Pekkaanswerquestion

解决方法

必需的复选框并不罕见。实际上每个注册表格都使用某种形式的“我已阅读并接受用户协议”复选框。

如果你有Opera可以尝试下面的代码。除非勾选该复选框,否则表单将不会提交。

<!doctype html>
<html>
<head>
<title>html5</title>
</head>
<body>
<h1>html5 test</h1>
<form action="cb.html">
<input type="checkBox" required="required" id="cb" name="cb">
<label for="cb">required checkBox</label>
<input type="submit">
</body>
</html>
原文链接:https://www.f2er.com/html5/168983.html

猜你在找的HTML5相关文章