var buttons = document.querySelectorAll('button');
// 父节点(parentNode) => 点击的时候,给当前的button的父节点添加灰色的下边框
for(var i=0;i<button.length;i++){
buttons[i].onclick=function(){
this.parentNode.style.borderBottom='1px solid #999';
}
}
var buttons = document.querySelectorAll('button');
// 父节点(parentNode) => 点击的时候,给当前的button的父节点添加灰色的下边框
for(var i=0;i<button.length;i++){
buttons[i].onclick=function(){
this.parentNode.style.borderBottom='1px solid #999';
}
}
本文标题:parentNode节点
本文链接:https://www.haomeiwen.com/subject/mvyrvftx.html
网友评论