test

来源:互联网 发布:自定义明星语音软件 编辑:程序博客网 时间:2024/05/28 11:50
<script type="text/javascript">window.onload = function() {    var tree = document.getElementById("tree");    var lis = tree.getElementsByTagName("li");    for(var i = 0; i < lis.length; i++) {        (function(a) {            lis[a].onclick = function() {                if(typeof this.getElementsByTagName("ul") !== null) {                    var ul_first = this.getElementsByTagName("ul")[0];                    if(ul_first.style.display == "block")                        ul_first.style.display = "none";                    else                        ul_first.style.display = "block";                }            };        })(i);    }};</script><ul id="tree"><li>aaa<ul><li>1-1</li><li>1-2</li><li>1-3</li><li>1-4</li></ul></li><li>bbb<ul><li>2-1</li><li>2-2</li><li>2-3</li><li>2-4</li></ul></li><li>ccc<ul><li>3-1</li><li>3-2</li><li>3-3</li><li>3-4</li></ul></li></ul>

ffff
0 0
原创粉丝点击