0

我使用这个 javascript 代码来选择所有 DIV 并更改它们的颜色。我不想更改标题中 DIV 的颜色。本任务的目的是学习 HTML5、DOM、Javascript 和 getElementsByTagName 函数:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>test</title>
    <div>divv in header</div>
</head>
<body onload="Onload()">
    <div>bla</div>
    <div id="Div1">bla</div>
    <div id="Div2">bla
        <div id="Div4">div in div</div>
    </div>
    <div id="Div3" class="diiiivvv">bla</div>
</body>
</html>

<script type="text/javascript">
    function Onload() {
        var h = document.head;
        var dh = h.getElementsByTagName('div');
        if (dh.length != 0) {
            dh[0].style.backgroundColor = 'red'; //fail
        }            

        var d = document.getElementsByTagName('div');

        for (var i = 0; i < d.length; i++) {
            d[i].style.backgroundColor = 'blue';
        };
    }
</script>
4

2 回答 2

0

你的问题在哪里?您刚刚正确选择了 head 中的 div:

    var h = document.head;
    var dh = h.getElementsByTagName('div');
    // or short:
    var dh = document.head.getElementsByTagName('div');

那么为什么不将相同的用于 body 元素:

    var db = document.body.getElementsByTagName('div');

getElementsByTagName()方法可以应用于任何 dom 元素。

于 2012-04-12T01:28:08.290 回答
0

您可能会发现最好使用 CSS 选择器和适当的样式规则来访问所需的元素。这是一个例子:

<script type="text/javascript">

function applyRule(selectorText, value) {

  // Get the style sheets - note sytleSheets is a live HTMLCollection
  var sheet, sheets = document.styleSheets;

  // Add a style sheet if there isn't one in the document
  if (!sheets.length) {
    sheet = document.createElement('style');
    sheet.type = 'text/css';
    document.getElementsByTagName('head')[0].appendChild(sheet);
  }

  // Get the last style sheet
  sheet = sheets[sheets.length - 1];

  // Add the rule - W3C model
  if (sheet.insertRule) {
    sheet.insertRule(selectorText + ' {' + value + '}', sheet.cssRules.length);

  // IE model
  } else if (sheet.addRule) {
    sheet.addRule(selectorText, value, sheet.rules.length);
  }  
}
</script>

<div>here is a div
<button onclick="applyRule('div','background-color: red')">Change div background colour</button>
</div>
于 2012-04-12T01:33:03.633 回答