解决方法
必需的复选框并不罕见。实际上每个注册表格都使用某种形式的“我已阅读并接受用户协议”复选框。
如果你有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>