“A、B或无”。 HTML 表单的输入

发布于 2024-10-01 05:02:37 字数 202 浏览 11 评论 0 原文

我有一种情况,我想允许将表单变量设置为一组值之一(在我当前的情况下为真/假)或未设置(在这种情况下不返回任何值,而不是返回一些“无”值或一个空白)。复选框可以给出未设置的位,但只能给出一个设置值。无线电元件可以起到某种作用。但是一旦选择了某个值,就无法返回取消设置。无论如何,我看过的所有其他输入总是设置变量。

我是否遗漏了什么,或者我是否不得不接受一个不太理想的解决方案?

I have a case where I want to allow a form variable to be set to one of a set of value (in my current case true/false) or left unset (in which case no value is returned rather than some 'none' value or a blank). A check box can give the unset bit but only one set value. A radio element could work, sort of. But once a value is selected there is no way to go back to unset. All the other inputs I've looked at always set the variable no matter what.

Am I missing something or am I just going to have to accept a less-than-ideal solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(7

等风来 2024-10-08 05:02:37

三个单选按钮或带有三个

Three radio buttons or a <select> with three <option> will do.

墨离汐 2024-10-08 05:02:37

放置三个收音机:A、B 和 None

Put three radios: A, B and None

紧拥背影 2024-10-08 05:02:37

执行“下拉菜单”,如下所示: http://www.echoecho.com/htmlforms11.htm< /a>

创建默认值“None”,后跟选项 A,然后是选项 B。

Do a 'drop down menu' as show here: http://www.echoecho.com/htmlforms11.htm

Create the default value as 'None' followed by option A and then option B.

笑,眼淚并存 2024-10-08 05:02:37

下拉列表怎么样?

---Please Select---
Option A
Option B

我最近一直在网上申请很多工作,这是人们通常采取的路线。

What about a drop down list with

---Please Select---
Option A
Option B

I've been applying to a lot of jobs online lately, and this is the route people generally have been taking.

你在看孤独的风景 2024-10-08 05:02:37

下拉框有用吗?

<select name="choices">
  <option>(None)</option>
  <option value="a">Choice A</option>
  <option value="b">Choice B</option>
</select>

Would a dropdown box work?

<select name="choices">
  <option>(None)</option>
  <option value="a">Choice A</option>
  <option value="b">Choice B</option>
</select>
余罪 2024-10-08 05:02:37

您需要使用一些 JavaScript。如果你有 jQuery,那么有几个三态复选框插件。

例如: http://plugins.jquery.com/project/tristate-checkbox

那里如果您在 google 中搜索“三态复选框”,则也可能是非 jQuery 脚本,

例如: http://caih.org/open-source-software/tri-state-checkbox-in-javascript/

You would need to use some javascript. If you have jQuery there are several tri-state checkbox plugins.

For example: http://plugins.jquery.com/project/tristate-checkbox

There are also probably non jQuery scripts if you google for "tri state checkbox"

For example: http://caih.org/open-source-software/tri-state-checkbox-in-javascript/

野味少女 2024-10-08 05:02:37

在一组中使用 3 个单选按钮,您可以使用 CSS 隐藏第一个“无”单选按钮(visibility:hidden;display:none;),如果这是在表单验证期间仍然选择了一个,则用户没有选择 true 或 false radio。

编辑(发表评论):

如果不需要Javascript,那么您可以有条件地在隐藏无线电上应用“hideableItem”类,如果禁用脚本,您将得到的最坏情况是3个无线电供用户选择,如下所示其他人已经描述过。如果启用了 JS,则默认无线电将被隐藏并提供我所描述的行为。

这里描述了如果 JS 被禁止/启用的技术的条件隐藏: http://lucassmith.name/2008/10/script-to-add-css-only-when-javascript-is-available.html

我一直使用它,它伟大的。

Using 3 radio buttons in one group, you could hide the first 'none' radio button with CSS (visibility:hidden; or display:none;), and if that's the one still selected during your form validation, then the user hasn't chosen either of the true or false radios.

EDIT (post comments):

If no-Javascript is a requirement, then you can conditionally apply a 'hideableItem' class on the hidden radio, if scripting is disabled the worst you'll get is 3 radio for the user to choose from, as others have described. If JS is enabled, then the default radio is hidden and provides the behaviour i've described.

The conditional hiding if JS is dis/enabled technique is described here: http://lucassmith.name/2008/10/script-to-add-css-only-when-javascript-is-available.html

I use it all the time, its great.

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