代码 ,用了getStyle函数

来源:1-5 编程练习

marshall_stan

2015-08-27 16:15

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
 * {
            margin: 0;
 padding: 0;
 font-size: 13px;
 list-style: none;
 }

        .menu {
            width: 210px;
 margin: 50px auto;
 border: 1px solid #ccc;
 }

        .menu p {
            height: 25px;
 line-height: 25px;
 font-weight: bold;
 background: #eee;
 border-bottom: 1px solid #ccc;
 cursor: pointer;
 padding-left: 5px;
 }

        .menu div ul {
            display: none;
 }

        .menu li {
            height: 24px;
 line-height: 24px;
 padding-left: 5px;
 }
    </style>
    <script type="text/javascript">
 window.onload = function () {
            var titles = document.getElementsByTagName("p");
 var uls = document.getElementsByTagName("ul");
 for(var i = 0; i<titles.length; i++){
                titles[i].index = i;
 titles[i].onclick = function(){
//                    for(var j = 0; j<titles.length; j++){
//                        uls[j].style.display = "none";
//                    }
 if(getStyle(uls[this.index],"display") == "none"){
                        uls[this.index].style.display = "block";
 }else if(getStyle(uls[this.index],"display") == "block"){
                        uls[this.index].style.display = "none";
 }

                };
 }
        };
 function getStyle(obj, attr) {
            if (obj.currentStyle) {
                return obj.currentStyle[attr];
 }
            else {
                return getComputedStyle(obj, false)[attr];
 }
        }
    </script>
</head>
<body>
<div class="menu" id="menu">
    <div>
        <p>Web前端</p>
        <ul style="display:block">
            <li>JavaScript</li>
            <li>DIV+CSS</li>
            <li>jQuery</li>
        </ul>
    </div>
    <div>
        <p>后台脚本</p>
        <ul>
            <li>PHP</li>
            <li>ASP.net</li>
            <li>JSP</li>
        </ul>
    </div>
    <div>
        <p>前端框架</p>
        <ul>
            <li>Extjs</li>
            <li>Esspress</li>
            <li>YUI</li>
        </ul>
    </div>
</div>
</body>
</html>


写回答 关注

1回答

  • sheshunjiang
    2016-04-15 12:56:30

    怎么了?

    getStyle函数是用来获取对象的属性。


Tab选项卡切换效果

本课程详细介绍网页页面中最流行常用的tab切换效果

65468 学习 · 533 问题

查看课程

相似问题