动态给table添加行点击事件

window.onload = function () {
            
            var trs = document.getElementsByTagName('tr');
            for (let j = 0; j < trs.length; j++) {
                trs[j].onclick = function(){
                    alert(this.getAttribute("tid"));
                }
                
            }

}; 

 

你可能感兴趣的:(JavaScript基础)