9

このスクリプトはstackoverflowで見つかりました。

 function showhide(id){
        if (document.getElementById) {
          var divid = document.getElementById(id);
          var divs = document.getElementsByClassName("hideable");
          for(var div in divs) {
             div.style.display = "none";
          }
          divid.style.display = "block";
        } 
        return false;
       }

<a href="#" onclick="showhide('features');" >features</a>
<a href="#" onclick="showhide('design');"  >design</a>
<a href="#" onclick="showhide('create');" >create</a>

<div class="hideable" id="features">Div 1</div>
<div class="hideable" id="design">Div 2</div>
<div class="hideable" id="create">Div 3</div>

しかし、それは、div.styleが未定義であると言います。なんで?:)

4

6 に答える 6

11

そのために for-in ループを使用しないでください。

document.getElementsByClassName('someClass')

から継承されないNodeListを返しますがArray.prototype、いくつかの点で似ています。名前が示すように、ノードのリストです。これは、lengthプロパティがあり、次を使用してのみアクセスする必要があることを意味します。

var myElements = document.getElementsByClassName('yourClass');
for (var i = 0, ii = myElements.length; i < ii; i++) {
    console.dir(myElements[i].style);
};

実際に要素を非表示にする方法は次のとおりです。

/**
 * Shows or hides an element from the page. Hiding the element is done by
 * setting the display property to "none", removing the element from the
 * rendering hierarchy so it takes up no space. To show the element, the default
 * inherited display property is restored (defined either in stylesheets or by
 * the browser's default style rules.)
 *
 * Caveat 1: if the inherited display property for the element is set to "none"
 * by the stylesheets, that is the property that will be restored by a call to
 * showElement(), effectively toggling the display between "none" and "none".
 *
 * Caveat 2: if the element display style is set inline (by setting either
 * element.style.display or a style attribute in the HTML), a call to
 * showElement will clear that setting and defer to the inherited style in the
 * stylesheet.
 * @param {Element} el Element to show or hide.
 * @param {*} display True to render the element in its default style,
 * false to disable rendering the element.
 */
var showElement = function(el, display) {
  el.style.display = display ? '' : 'none';
};

var myElement = document.getElementById('someID');
showElement(myElement, false);// it should now be hidden.
于 2013-01-15T10:01:42.883 に答える
4
for(var i = 0; i < divs.length; i++) {
         divs[i].style.display = "none";
      }

編集: for in ループは、オブジェクト プロパティをループするために使用されます。

于 2013-01-15T09:58:36.807 に答える
2

交換

for(var div in divs) {

for(var i=0; i<divs.length;i++) {
   var div = divs[i];

divsgetElementsByClassNameの結果であるは、実際には配列ではなく、配列のようなオブジェクトである NodeList であり、その要素ではなくそのプロパティを反復していました。

于 2013-01-15T09:59:29.787 に答える
-2

for-inループ内のすべての要素が DOM 要素であることを確認してください。for-inループを次のようにフィルタリングすることをお勧めしますhasOwnProperty()

      for(var div in divs) {
           if (divs.hasOwnProperty(div)) {
               if (div && div.style) {
                   div.style.display = "none";
               }
           }
      }
于 2013-01-15T09:58:00.997 に答える