zoukankan      html  css  js  c++  java
  • [原创 js] 点击展开关闭效果

         因为工作中老是需要这个功能,本来也不是很麻烦,就把它写成一个可重用的函数好了。代码很简单。

    //===========================点击展开关闭效果====================================

    function openShutManager(oSourceObj,oTargetObj,shutAble,oOpenTip,oShutTip){
    var sourceObj = typeof oSourceObj == "string" ? document.getElementById(oSourceObj) : oSourceObj;
    var targetObj = typeof oTargetObj == "string" ? document.getElementById(oTargetObj) : oTargetObj;
    var openTip = oOpenTip || "";
    var shutTip = oShutTip || "";
    if(targetObj.style.display!="none"){
        if(shutAble) return;
        targetObj.style.display="none";
        if(openTip && shutTip){
         sourceObj.innerHTML = shutTip; 
        }
    } else {
        targetObj.style.display="block";
        if(openTip && shutTip){
         sourceObj.innerHTML = openTip; 
        }
    }
    }

    函数一共有5个参数,作用如下:

    oSourceObj:点击事件的对象,类型为DOM对象,或者对象的id;

    oTargetObj:展开关闭的对象,类型为DOM对象,或者对象的id;

    shutAble:对象是否可关闭,类型为布尔值,可选,默认为false;

    oOpenTip:对象关闭时,点击源的文字,类型为String,可选;

    oShutTip:对象打开时,点击源的文字,类型为String,可选.

    ================================= 下面放demo ==================================

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
    #box,#box2,#box3,#box4{padding:10px;border:1px solid green;} 
    </style>
    <script type="text/javascript">
    //===========================点击展开关闭效果====================================

    function openShutManager(oSourceObj,oTargetObj,shutAble,oOpenTip,oShutTip){
    var sourceObj = typeof oSourceObj == "string" ? document.getElementById(oSourceObj) : oSourceObj;
    var targetObj = typeof oTargetObj == "string" ? document.getElementById(oTargetObj) : oTargetObj;
    var openTip = oOpenTip || "";
    var shutTip = oShutTip || "";
    if(targetObj.style.display!="none"){
        if(shutAble) return;
        targetObj.style.display="none";
        if(openTip && shutTip){
         sourceObj.innerHTML = shutTip; 
        }
    } else {
        targetObj.style.display="block";
        if(openTip && shutTip){
         sourceObj.innerHTML = openTip; 
        }
    }
    }
    </script>
    <title>无标题文档</title>
    </head>

    <body>
    <p><a href="###" onclick="openShutManager(this,'box')">点击展开</a></p>
    <p id="box" style="display:none">
        这里面放的是box的内容.
    </p>
    <p><a href="###" onclick="openShutManager(this,'box2',true)">点击展开</a></p>
    <p id="box2" style="display:none">
        这里面放的是box的内容.
    </p>
    <p><a href="###" onclick="openShutManager(this,'box3',false,'点击关闭','点击展开')">点击展开</a></p>
    <p id="box3" style="display:none">
        这里面放的是box的内容.
    </p>
    <p><button onclick="openShutManager(this,'box4',false,'点击关闭','点击展开')">点击展开</button></p>
    <p id="box4" style="display:none">
        这里面放的是box的内容.
    </p>
    </body>
    </html>

  • 相关阅读:
    python中的递归算法
    python中的闭包函数
    python中的函数对象和函数嵌套
    python中函数与参数的简介
    python中的文件操作: 包括文件的打开方式和文件的修改
    python中元组;字典;集合的内置方法以及它们的取值方式
    python中的数字类型及内置方式;字符类型及内置方式和列表类型及内置方法
    python中的while和for循环以及break,continue结束语句。
    判断字符串以字母开头,后面可以是数字,下划线,字母,长度为6-30
    Prompt box是什么?它的返回值有什么用?
  • 原文地址:https://www.cnblogs.com/cly84920/p/4427212.html
Copyright © 2011-2022 走看看