无法返回动态创建的复选框的值

时间:2015-12-08 19:47:20

标签: javascript jquery

我在表格中创建表单字段,然后使用javascript在表格中创建行并使用所需字段构建行。下面是我的javascript。

function createRow() {  
    for (var i=0;i<rows3;i++){ 

        if (document.getElementById('buID').value==agile1[i]['BU_ID']){
            var rowCount = document.getElementById("mytable").rows.length;
            document.getElementById("rowIDcount").value=rowCount;
            console.log(agile1[i]['Agile_team']);
            x=x+1;
  var row = document.createElement('tr'); // create row node
  var rowid = document.createElement('td');
  var col = document.createElement('td'); // create column node
  var col2 = document.createElement('td'); // create second column node
  var col3 = document.createElement('td');
  var col4 = document.createElement('td');
  var col5 = document.createElement('td');
  var col6 = document.createElement('td');

  row.appendChild(rowid);
  row.appendChild(col); // append first column to row
  row.appendChild(col2); // append second column to row
  row.appendChild(col3);
  row.appendChild(col4);
  row.appendChild(col5);
  row.appendChild(col6);


  var rowids="<input id='row"+x+"'readonly value='"+x+"'>";
  agile="<input  id='agileteams"+x+"'readonly value='"+agile1[i]['Agile_team']+"'>";
  var strategic="<input type='number' min='0' max='100' id='strategic"+x+"'>";
  var Initiatives="<input type='number' min='0'  id='numInts"+x+"'>";
  var NewName="<input id='newname"+x+"'>";
  var deleteTeam="<input type='checkbox' value='1' id='deleteteam'"+x+"''>";
  var RenameTeam="<input type='checkbox' id='renameteam'"+x+"''>";


  rowid.innerHTML=rowids;
  col.innerHTML=agile;
   col2.innerHTML=strategic;
   col3.innerHTML=Initiatives;
   col4.innerHTML=deleteTeam;
   col5.innerHTML=RenameTeam;
   col6.innerHTML=NewName;
  var table = document.getElementById("mytable"); // find table to append to
  table.appendChild(row);

}
}
}

创建行后,我可以返回文本框的值,但不能返回复选框元素。我使用document.getElementByID('deleteteam1').value来返回值,但是我收到以下错误。

未捕获的TypeError:无法读取属性&#39;值&#39;为null

请记住,如果我使用document.getElementByID('agileteams1').value,则会返回该值。

我做错了什么?

1 个答案:

答案 0 :(得分:3)

您有额外的单引号,这会为您的复选框元素创建错误的ID属性值。因此,当您访问document.getElementByID('agileteams1')时,它将返回null,因为它不存在。我们无法调用null

上的任何方法/属性

更改

var deleteTeam="<input type='checkbox' value='1' id='deleteteam'"+x+"''>";

var deleteTeam="<input type='checkbox' value='1' id='deleteteam"+x+"'>";