リストを折りたたみ可能にし、現在 getElementById - http://acmeous.blogspotでのみ動作するように記述されている関数に、CMS ( https://stackoverflow.com/a/1933623/1336540 ) による getElementsByClassName 関数呼び出しを使用したいと思います。 com/2011/03/how-to-create-easy-collapsible-and.html
同じクラスの HTML 要素が複数存在する可能性があるため、CMS はサイクルを使用してそれらを見つけて処理します。私は彼のコードを適応させようとしていましたが、サイクルを使用しているため、私の JS の能力を超えています。
元の CMS 関数呼び出し:
function toggle_visibility(className) {
var elements = getElementsByClassName(document, className),
n = elements.length;
for (var i = 0; i < n; i++) {
var e = elements[i];
if(e.style.display == 'block') {
e.style.display = 'none';
} else {
e.style.display = 'block';
}
}
}
この関数呼び出しを変換して、getElementById を CMS の getElementsByClassName に置き換えるにはどうすればよいですか?
if (window.addEventListener) {
window.addEventListener("load", function()
{makeCollapsible(document.getElementById('listCategories'), 1);}, false);
} else if (window.attachEvent) {
window.attachEvent("onload", function()
{makeCollapsible(document.getElementById('listCategories'), 1);});
} else {
window.onload = function()
{makeCollapsible(document.getElementById('listCategories'), 1);};
}
これを読んで、私を助けようとしてくれてありがとう!
編集: 関数 makeCollapsible:
function makeCollapsible(listElement,listState){
if(listState!=null) defaultState=listState;
// removed list item bullets and the sapce they occupy
listElement.style.listStyle='none';
listElement.style.marginLeft='0';
listElement.style.paddingLeft='0';
// loop over all child elements of the list
var child=listElement.firstChild;
while (child!=null){
// only process li elements (and not text elements)
if (child.nodeType==1){
// build a list of child ol and ul elements and show/hide them
var list=new Array();
var grandchild=child.firstChild;
while (grandchild!=null){
if (grandchild.tagName=='OL' || grandchild.tagName=='UL'){
if(defaultState==1) grandchild.style.display='block';
else grandchild.style.display='none';
list.push(grandchild);
}
grandchild=grandchild.nextSibling;
}
// add toggle buttons
if(defaultState==1) {
var node=document.createElement('img');
node.setAttribute('src',expandedImage);
node.setAttribute('class','collapsibleOpen');
node.style.marginRight="5px";
node.style.display = "inline";
node.onclick=createToggleFunction(node,list);
child.insertBefore(node,child.firstChild);
} else {
var node=document.createElement('img');
node.setAttribute('src',collapsedImage);
node.setAttribute('class','collapsibleClosed');
node.style.marginRight="5px";
node.style.display = "inline";
node.onclick=createToggleFunction(node,list);
child.insertBefore(node,child.firstChild);
}
}
child=child.nextSibling;
}
}