binds a mouseover
event on table to get data from any row you plan to move to. However, it is found that no matter whether the event is set in the capture phase or the bubbling stage, you can only get the td but not the tr. What"s going on, boss, ask for help
TABLE.addEventListener("mouseover", (e)=>{
console.log(e.target.tagName);
if(e.target.tagName === "TR") {
console.log(e.target);
//
}
},false)