• <small id='bsZFY'></small><noframes id='bsZFY'>

    <legend id='bsZFY'><style id='bsZFY'><dir id='bsZFY'><q id='bsZFY'></q></dir></style></legend>

      <tfoot id='bsZFY'></tfoot>
    1. <i id='bsZFY'><tr id='bsZFY'><dt id='bsZFY'><q id='bsZFY'><span id='bsZFY'><b id='bsZFY'><form id='bsZFY'><ins id='bsZFY'></ins><ul id='bsZFY'></ul><sub id='bsZFY'></sub></form><legend id='bsZFY'></legend><bdo id='bsZFY'><pre id='bsZFY'><center id='bsZFY'></center></pre></bdo></b><th id='bsZFY'></th></span></q></dt></tr></i><div id='bsZFY'><tfoot id='bsZFY'></tfoot><dl id='bsZFY'><fieldset id='bsZFY'></fieldset></dl></div>

        • <bdo id='bsZFY'></bdo><ul id='bsZFY'></ul>

        我们如何使用 DOM 访问单选按钮的值?

        时间:2023-10-21
      1. <tfoot id='ES39M'></tfoot>

        <legend id='ES39M'><style id='ES39M'><dir id='ES39M'><q id='ES39M'></q></dir></style></legend>
          <bdo id='ES39M'></bdo><ul id='ES39M'></ul>
          <i id='ES39M'><tr id='ES39M'><dt id='ES39M'><q id='ES39M'><span id='ES39M'><b id='ES39M'><form id='ES39M'><ins id='ES39M'></ins><ul id='ES39M'></ul><sub id='ES39M'></sub></form><legend id='ES39M'></legend><bdo id='ES39M'><pre id='ES39M'><center id='ES39M'></center></pre></bdo></b><th id='ES39M'></th></span></q></dt></tr></i><div id='ES39M'><tfoot id='ES39M'></tfoot><dl id='ES39M'><fieldset id='ES39M'></fieldset></dl></div>
            <tbody id='ES39M'></tbody>

                <small id='ES39M'></small><noframes id='ES39M'>

                • 本文介绍了我们如何使用 DOM 访问单选按钮的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我们如何使用 DOM 访问单选按钮的值?

                  How can we access the value of a radio button using the DOM?

                  例如.我们有单选按钮:

                  For eg. we have the radio button as :

                  <input name="sex" type="radio" value="male">
                  
                  <input name="sex" type="radio" value="female">
                  

                  它们位于名为 form1 的表单中.当我尝试

                  They are inside a form with name form1. When I try

                  document.getElementByName("sex").value
                  

                  无论检查值如何,它总是返回男性".

                  it returns 'male' always irrespective of the checked value.

                  推荐答案

                  只是为了生成" Canavar 非常有用的功能:

                  Just to "generify" Canavar's very helpful function:

                  function getRadioValue(theRadioGroup)
                  {
                      var elements = document.getElementsByName(theRadioGroup);
                      for (var i = 0, l = elements.length; i < l; i++)
                      {
                          if (elements[i].checked)
                          {
                              return elements[i].value;
                          }
                      }
                  }
                  

                  ... 现在将这样引用:

                  ... which would now be referenced thusly:

                  getRadioValue('sex');
                  

                  奇怪的是,这样的东西还不是prototype.js的一部分.

                  Strange that something like this isn't already a part of prototype.js.

                  这篇关于我们如何使用 DOM 访问单选按钮的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:选择单选按钮时显示 div 下一篇:在采取行动的情况下获取单选按钮的选定值

                  相关文章

                  1. <small id='q286E'></small><noframes id='q286E'>

                        <bdo id='q286E'></bdo><ul id='q286E'></ul>
                    1. <tfoot id='q286E'></tfoot>
                      <legend id='q286E'><style id='q286E'><dir id='q286E'><q id='q286E'></q></dir></style></legend>
                    2. <i id='q286E'><tr id='q286E'><dt id='q286E'><q id='q286E'><span id='q286E'><b id='q286E'><form id='q286E'><ins id='q286E'></ins><ul id='q286E'></ul><sub id='q286E'></sub></form><legend id='q286E'></legend><bdo id='q286E'><pre id='q286E'><center id='q286E'></center></pre></bdo></b><th id='q286E'></th></span></q></dt></tr></i><div id='q286E'><tfoot id='q286E'></tfoot><dl id='q286E'><fieldset id='q286E'></fieldset></dl></div>