Click on HTML table and get row number (with Javascript, not jQuery)

前端 未结 2 1497
醉话见心
醉话见心 2021-02-05 06:40

I would like to know how to click on a button in an HTML table and get the row and column number returned to me: For example, with the following table:



        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-05 07:02

    Try this:

    function  getId(element) {
        alert("row" + element.parentNode.parentNode.rowIndex + 
        " - column" + element.parentNode.cellIndex);
    }

提交回复
热议问题