如果 OPTION 值为空,如何检索空值?

发布于 2024-10-31 18:54:42 字数 545 浏览 3 评论 0 原文

考虑到我们有这样的 HTML:

<select id="my_select">
  <option value="1">Foo</option>
  <option value="2">Bar</option>
  <option value="">Bork</option>
  <option value="3">Hey!</option>
</select>

获取所选 value 的正确方法是:

var oS = document.getElementById("my_select");
alert(oS.options[oS.selectedIndex].value);

但是如果选择了第三个选项 Bork,则 alert() 将显示 "Bork" 而不是 "" (空字符串)。

如何检索空字符串?

Considering we have this HTML:

<select id="my_select">
  <option value="1">Foo</option>
  <option value="2">Bar</option>
  <option value="">Bork</option>
  <option value="3">Hey!</option>
</select>

The proper way to get the chosen value would be:

var oS = document.getElementById("my_select");
alert(oS.options[oS.selectedIndex].value);

But if the third option, Bork, is chosen, the alert() will show "Bork" and not "" (empty string).

How do I retrieve the empty string?

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

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

发布评论

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

评论(2

可爱咩 2024-11-07 18:54:43

alert(document.getElementById("my_select").value)

返回空字符串或所选选项的任何定义值。

无需指定 options[selectedIndex]

如果没有默认的选中索引,则返回第一个选项值。

如果所选选项没有值属性,则

选项的文本会在大多数浏览器中的脚本警报中返回,

并发送到服务器(如果选择有名称和表单操作)所有浏览器。

alert(document.getElementById("my_select").value)

returns the empty string, or any defined value of the selected option.

no need to specify options[selectedIndex]

If there is no default selected index, the first option value is returned.

If there is no value attribute for the selected option,

the option's text is returned in a script alert in most browsers,

and is sent to the server (if the select has a name and a form action) in all browsers.

留一抹残留的笑 2024-11-07 18:54:42

首先,事实并非如此。对我来说,在 Chrome 和 IE8 中,您的示例会警告空字符串 (jsFiddle)。

但是,如果根本没有设置 value (jsFiddle), Bork 收到警报。我认为这就是您遇到的问题。这是正确的行为。正如MDC 页面所说,

如果没有定义,其默认值为元素的文本内容。

但是,您可以使用 getAttribute 方法,如果没有选择任何元素,该方法将给出 null (jsFiddle)。

var oS = document.getElementById("my_select");
alert(oS.options[oS.selectedIndex].getAttribute('value'));

Firstly, it doesn't. For me, in Chrome and IE8, your example alerts an empty string (jsFiddle).

If, however, there is no value set at all (jsFiddle), Bork is alerted. This is, I think, the issue you're coming up against. This is correct behaviour. As the MDC page says,

If it is not defined, its default value is the text content of the element.

You could, however, use the getAttribute method, which gives null if no elements are selected (jsFiddle).

var oS = document.getElementById("my_select");
alert(oS.options[oS.selectedIndex].getAttribute('value'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文