JavaScript常见DOM节点操作实例(2)

C、nextSibling ; nextElementSibling查找下一个兄弟节点。也是存在兼容性问题。
 //查找下一个兄弟节点的封装函数
 function nextSibling(ele) {
  if (ele.nextElementSibling) {
    return ele.nextElementSibling;
  } else {
    return ele.nextSibling;
  }
 }
 nextSibling(oMid).style.background = 'red';

D、previousSibling ; previousElementSibling查找上一个兄弟节点。也是存在兼容性问题。
 //查找上一个兄弟节点的封装函数
 function previousSibling(ele) {
  if (ele.nextElementSibling) {
    return ele.previousElementSibling;
  } else {
    return ele.previousSibling;
  }
 }
 previousSibling(oMid).style.background = 'red';

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/48e926d61355a0ab4d1dcd9a158754d9.html