HTML 中的复选框
我使用什么输入属性来确保用户不会选择 html 复选框列表中的所有内容?例如,我创建了五个复选框,但我希望用户最多只能选择三个。在这种情况下我不想使用单选按钮。请仅保留 HTML 的解决方案,而不是 javascript。
谢谢。这里是第一个新手问题。
What input attribute do I use to make sure the user does not select everything in a list of html checkboxes? For example, I have created five checkboxes, but I want users to only select a maximum of three. I don't want to use radio buttons in this case. Please keep solutions to only HTML, not javascript.
Thanks. First newbie question here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTML 没有任何验证功能可以进行此类检查。
您需要使用JavaScript来实现这个客户端。
您可以使用
setCustomValidity
方法< /a> 与您的自定义规则一起生成一条错误消息,该消息使用与本机 HTML 验证消息相同的样式。HTML does not have any validation feature that makes that kind of check possible.
You need to use JavaScript to achieve this client-side.
You can use the
setCustomValidity
method with your custom rules to generate an error message that uses the same style as the native HTML validation messages.