为了账号安全,请及时绑定邮箱和手机立即绑定

有人给个正确答案吗?我的看不到,真的没办法了,怎么添加和删除都没有反应

9-22的代码有吗?

正在回答

2 回答

table.onmouseover=function(e){

  if(e.target.tagName.toLowerCase()=="td"){

    e.target.parentNode.style.backgroundColor="#ccc";

  }else if(e.target.tagName.toLowerCase()=="a"){

    e.target.parentNode.parentNode.style.backgroundColor="#ccc";

  }  

}

table.onmouseout=function(e){

  if(e.target.tagName.toLowerCase()=="a"){

    e.target.parentNode.parentNode.style.backgroundColor="#fff";

  }else if(e.target.tagName.toLowerCase()=="td"){

    e.target.parentNode.style.backgroundColor="#fff";

  }

}

这是绑定在table元素上的,不过mouseover和mouseout不太适合将事件绑定在父元素上(事件委托),可以先给前两个tr元素绑定mouseover和mouseout事件,然后在添加按钮的事件处理程序里给新添加的tr元素再绑定事件

0 回复 有任何疑惑可以回复我~

不要要答案  要自己想

0 回复 有任何疑惑可以回复我~
#1

慕斯602831 提问者

我想了o(╥﹏╥)o没有任何反应,我想看看哪里错了
2019-09-09 回复 有任何疑惑可以回复我~
#2

阳火锅 回复 慕斯602831 提问者

你把代码发出来 我给你看看
2019-09-09 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有人给个正确答案吗?我的看不到,真的没办法了,怎么添加和删除都没有反应

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信