getNextElement函数的用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getNextElement函数的用法相关的知识,希望对你有一定的参考价值。

Usage of the getNextElement function. Very basic usage to pick out the h1 tags, then change the properties of the next element(not node).
  1. window.onload = function() {
  2. var headers = document.getElementsByTagName("h1");//grab all h1's
  3. for(i=0; i<headers.length; i++) {//loop through the h1's
  4. var elem = getNextElement(headers[i].nextSibling);//look for the next sibling of the h1
  5.  
  6. //apply these styles to the selected elements
  7. elem.style.color = "red";
  8. elem.style.backgroundColor = "black";
  9. }
  10. }
  11. //getNextElement function
  12. function getNextElement(node) {
  13. if(node.nodeType == 1){
  14. return node;
  15. }
  16. if(node.nextSibling) {
  17. return getNextElement(node.nextSibling)
  18. }
  19. return null;
  20. }

以上是关于getNextElement函数的用法的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript getNextElement DOM函数

getNextElement函数

getNextElement DOM函数

c_cpp 加载源图像固定用法(代码片段,不全)

创建片段而不从 java 代码实例化它

Python中的基本函数及其常用用法简析