繁体   English   中英

如何获取由dom创建的单选按钮的实际标签值/文本?

[英]how to get the actual label value/text of a radio button created by dom?

基本上我试图使用由dom创建的getElementById ...来获得一个带有实际标签(选择编辑或删除标签)的警报框,但是如果我在alert(a)之后取消注释代码并删除alert(a)它甚至不会创建按钮对我来说..任何想法如何做到或我做错了什么?

<HTML>  
<HEAD>  
<TITLE> New Document </TITLE>  
<SCRIPT LANGUAGE="JavaScript">
function createRadio(){  
var objDiv = document.getElementById("radioDiv");  

    var radioItem1 = document.createElement("input");  
    radioItem1.type = "radio";  
    radioItem1.name = "radioGrp";  
    radioItem1.id = "rad1";  
    radioItem1.value = "myradio1";  

//        radioItem1.defaultChecked = true;   
//        radioItem1.checked = true;  

    var radioItem2 = document.createElement("input");  
    radioItem2.type = "radio";  
    radioItem2.name = "radioGrp";  
    radioItem2.id = "rad2";  
    radioItem2.value = "myradio2";  
//        var pA= prompt("Type name for 1");
//        var pB= prompt("Type name for 2");
    var objTextNode1 = document.createTextNode("Edit");  
    var objTextNode2 = document.createTextNode("Delete");  

    var objLabel = document.createElement("label");  
    objLabel.htmlFor = radioItem1.id;  
    objLabel.appendChild(radioItem1);  
    objLabel.appendChild(objTextNode1);  

    var objLabel2 = document.createElement("label");  
    objLabel2.htmlFor = radioItem2.id;  
    objLabel2.appendChild(radioItem2);  
    objLabel2.appendChild(objTextNode2);  


    objDiv.appendChild(objLabel);  
    objDiv.appendChild(objLabel2);  

}   

function test()
{
//    var a = document.getElementById("radioDiv").firstChild;


var a = document.getElementById("radioDiv").firstChild;
alert(a);
//    if (a=="Edit")
//    {
//        alert("Edit");
//    }
//    else if (a=="Delete")
//    {
//        alert("Delete");
//    }
//    else()
//    {
//        alert("Try Again");
//    }
}

</SCRIPT>  
</HEAD>  

<BODY>  

<BUTTON onclick="createRadio()">Create Radio Buttons</BUTTON>
<BUTTON onclick="test()">Alert</BUTTON>
<div id="radioDiv"></div>  
</BODY>  
</HTML>  

(编辑)好的,看看这个! 并尝试使用这种技术对未来的问题进行编码:通用的简短函数和注释。 祝好运!

<html>
    <head>
        <script>
        /**
           * Create a group of radiobuttons
           * @param whereToAttach Div to attach generated things
           * @param groupname Name for the group
           * @param options Array of options ["one","two",...
           */

          function createRadioGroup(whereToAttach, groupname, options) {

              var objDiv = document.getElementById(whereToAttach);
              objDiv.innerHTML=""; // we clear it just in case
              for (var i = 0, len = options.length; i < len; i++) {
                  objDiv.appendChild(createRadioButtonWithLabel(name, options[i], options[i]));
              }
          }

          /**
           * Get a group's selected node
           * @param groupname Name of the group
           * @return The radiobutton element that is checked, or null if none
           */

          function getSelectedNode(groupname) {
              var nodes = document.getElementById("radioDiv").childNodes;
              for (var i = 0; i < nodes.length; i++) {
                  // nodes[i] is each label child of radioDiv
                  // we want its button to check if pressed
                  var radiobutton=nodes[i].firstChild;
                  if (radiobutton.checked) return radiobutton;
              }
              return null; // none selected
          }


          /**
           * Creates a label with a radiobutton and a text node
           * @param name Name of the group this radiobutton belongs to
           * @param label Label for the radiobutton
           * @param value Value for the radiobutton
           */

          function createRadioButtonWithLabel(groupname, label, value) {

              var objTextNode = document.createTextNode(label),
                  objLabel = document.createElement("label"),
                  objRadioButton = createRadioButton(groupname, value);

              objLabel.appendChild(objRadioButton);
              objLabel.appendChild(objTextNode);

              return objLabel;
          }

          /**
           * Creates a radio button
           * @param groupname Name of the group this radiobutton belongs to
           * @param value Value for the radiobutton
           */

          function createRadioButton(groupname, value) {
              var radioItem = document.createElement("input");
              radioItem.type = "radio";
              radioItem.name = groupname;
              radioItem.value = value;
              return radioItem;
          }

          //////////////////////////////////////////////////////////////////////

          function createStuff() {
              createRadioGroup("radioDiv", "coolMenu", ["Edit", "Delete", "Modify", "Modify a lot", "Have a beer", "Walk the dog", "f** my girlfriend"]);
          }

          function testStuff() {
              var nodeSelected = getSelectedNode("coolMenu");
              alert(nodeSelected.value);
          }

        </SCRIPT>  
    </HEAD>  
    <BODY>  
        <BUTTON onclick="createStuff()">Create Radio Buttons</BUTTON>
        <BUTTON onclick="testStuff()">Alert</BUTTON>
        <div id="radioDiv"></div>
    </BODY>  
</HTML>

------味精

你有一个愚蠢的错字和一个小问题。 这有效:

        function test()
        {
            var b = document.getElementById("radioDiv").firstChild;

            // b is the LABEL OBJECT, its text is b.innerText

            var a=b.innerText
            alert(a);


            if (a=="Edit")
            {
                alert("Edit");
            }
            else if (a=="Delete")
            {
                alert("Delete");
            }
// THIS IS THE TYPO >>>   else()
            else 
            {
                alert("Try Again");
            }
        }

但是,此代码不会为您提供选定的标签,而是第一个标签(您需要的是firstChild

如果您想使用动态构造的结构来找出选择了哪个无线电(顺便说一下,这相当复杂),则可以定义以下便捷功能:

function isRadioButtonPressed(number) {
   return document.getElementById("rad"+number).checked;
}

因为您已将rad1按钮命名为rad1rad2 ,...

因此,您可以执行以下操作:

var isEditSelected=isRadioButtonPressed(1); // will return true if edit is selected
var isDeleteSelected=isRadioButtonPressed(2);  // will return true if delete is selected

一些建议:

  • 您应该创建诸如isRadioButtonPressed之类的实用程序函数,以避免使用firstchild,document.getElementById等一遍又一遍地写长表达式。如您所见,编写简单的东西会使代码变得非常复杂。

  • 您应该使用FireBugChrome / Safari Developer工具 如果您使用chrome ,请转到“工具”菜单,然后选择“开发人员工具”。 将出现一个窗口,您将在其中看到代码错误。 如果您对原始问题进行此操作,则会在else()行上看到Chrome如何抱怨语法错误。 如果使用FireFox ,则下载Firebug插件也是如此。 开发网页是必须的。

更多示例功能:

 function createRadioButton(id, name, value) {
      var radioItem = document.createElement("input");  
      radioItem.type = "radio";  
      radioItem.name = name;
      radioItem.id = id;  
      radioItem.value = value; 
      return radioItem;
 }

看看您的createRadio现在有多酷:

 function createRadio() {

      var radioItem1=createRadioButton("rad1","radioGrp", "myradio1"),
          radioItem2=createRadioButton("rad2","radioGrp", "myradio2");

       .
       .
 }

是不是更容易阅读?

希望能帮助到你 :)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM