Pure JavaScript select table row as object when click - Stack Overflow

I have a table as following I need when click on a row cell select this row and convert as a JavaScript

I have a table as following I need when click on a row cell select this row and convert as a JavaScript object using pure JavaScript.

<table id="auditors">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

I have a table as following I need when click on a row cell select this row and convert as a JavaScript object using pure JavaScript.

<table id="auditors">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>
Share Improve this question edited Jan 5, 2017 at 13:02 Praveen Kumar Purushothaman 167k27 gold badges213 silver badges260 bronze badges asked Jan 5, 2017 at 13:00 GiorgosGiorgos 6774 gold badges13 silver badges27 bronze badges 3
  • It can be any cell or any specific cell that is when clicked changes that row to object? – Sorangwala Abbasali Commented Jan 5, 2017 at 13:02
  • 1 Please post your code you have so far and have problems with so we can have a look at it and figure out why it is not working. – Nope Commented Jan 5, 2017 at 13:03
  • You need to be more specific then click on a row cell select this row and convert as a JavaScript object What type of object? You expect the th values to be property names of the object with the values of the tr you clicked on to be the values? There is a lot of gray area instructions with no visible initial effort being made. – Nope Commented Jan 5, 2017 at 13:06
Add a ment  | 

2 Answers 2

Reset to default 5

The interesting part here is to make it generic by not hardcoding the keys/columns. This can be done by using the th element texts as keys when building the object:

[].slice.call(document.querySelectorAll("#auditors tr"), 1).forEach(function(row){
      row.addEventListener("click", function(){
           var ths = document.querySelectorAll("#auditors th");
           var obj = [].reduce.call(ths, function(obj, th, i){
               obj[th.textContent] = row.cells[i].textContent;
               return obj;
           }, {});
           console.log(obj);
      });
});
<table id="auditors">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

You can do using addEventListener:

var trs = document.querySelectorAll("tr");
for (var i = 0; i < trs.length; i++)
  (function (e) {
    trs[e].addEventListener("click", function () {
      console.log(this);
    }, false);
  })(i);
<table id="auditors">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

Here, the this will be a HTMLElement Object. The logged item will be the <tr> itself.

<tr>
  <td>Jill</td>
  <td>Smith</td> 
  <td>50</td>
</tr>

If you want it to make it like an Object that contains your format, then you need to do:

var trs = document.querySelectorAll("tr");
for (var i = 0; i < trs.length; i++)
  (function (e) {
    trs[e].addEventListener("click", function () {
      console.log({
        "FirstName": this.querySelectorAll("*")[0].innerHTML.trim(),
        "LastName": this.querySelectorAll("*")[1].innerHTML.trim(),
        "Age": this.querySelectorAll("*")[2].innerHTML.trim()
      });
    }, false);
  })(i);
<table id="auditors">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

When you click the row, you will get the object as:

{
  "FirstName": "Jill",
  "LastName": "Smith",
  "Age": "50"
}

Here I have assumed the <th> as the Object Keys.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743696438a4491834.html

相关推荐

  • Pure JavaScript select table row as object when click - Stack Overflow

    I have a table as following I need when click on a row cell select this row and convert as a JavaScript

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信