1

我通过 DOM 方法在网页中添加了 HTML5 按钮和文本。我需要的是,当我单击特定按钮时,它对应的 Btn_ID 和相应的文本应该显示在警报中。我得到了相应的 Btn_ID,但我无法获取它的文本。

我的代码是;

<head>
    <style>
    .tbls {
        height:60px;
        width:100%;
    }
    .Rows {
        height:60px;
        width:100%;
        background-color:lightblue;
    }
    .Btn {
        height:40px;
        width:70px;
    }
    </style>
</head>

<body>
    <div id='contnt'></div>
</body>
<script>
var arry = ["Name 1", "Name 2", "Name 3", "Name 4", "Name 5"];
var container = document.getElementById('contnt');
for(var j = 0; j < arry.length; j++) {
    var tbls = document.createElement('table');
    tbls.className = 'tbls';
    var Rows = document.createElement('tr');
    Rows.className = 'Rows';
    var Column = document.createElement('td');
    var questionlist = document.createTextNode(arry[j]);
    Column.appendChild(questionlist);
    var Btn = document.createElement('button');
    Btn.id = j;
    Btn.className = 'Btn';
    Btn.innerHTML = 'SUBMIT';
    Btn.onclick = function () {
        alert(this.id);
        alert(this.parentElement.questionlist);
    }
    Column.appendChild(Btn);
    Rows.appendChild(Column);
    tbls.appendChild(Rows);
    container.appendChild(tbls);
}
</script>

代码示例:http: //jsfiddle.net/DerekL/9je7N/

4

1 回答 1

2

alert如果单击第一个,您的意思是要Name1submit吗?

Btn.onclick = function() { 
   alert(this.id);
   alert(this.parentElement.firstChild.nodeValue); 
}

//this.parentElement = Your table cell
//this.parentElement.firstChild = text node (questionlist)
//this.parentElement.firstChild.nodeValue = text node's value //Name1, Name2 

更新:

td获取元素内的第一个文本节点

Btn.onclick = function() { 
   alert(this.id);
   var children = this.parentElement.childNodes;
    var text;
    for(var i = 0; i < children.length; i ++) {
        if(children[i].nodeType === Node.TEXT_NODE) {
            text = children[i].nodeValue;
            break;
        }
    }
   alert(text); 
}

jsFiddle 演示

更新了 jsFiddle 演示

于 2013-07-24T05:13:20.937 回答