HTML 中的复选框

发布于 2025-01-10 22:51:44 字数 140 浏览 0 评论 0原文

我使用什么输入属性来确保用户不会选择 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

臻嫒无言 2025-01-17 22:51:44

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文