显示/隐藏/切换- Javascript / jQuery

Show / Hide / Toggle - Javascript / jQuery

本文关键字:Javascript jQuery 切换 隐藏 显示      更新时间:2023-09-26

我是Javascript新手。

我正在尝试用显示/隐藏函数做一些事情。

html:

<html>
 <head>
  <title> New Document </title>
<style>
#button01 {
 width:100px;
 height:50px;
 margin:10px;
 padding:6px 0 0 0;
 background-color:#f0f0f0;
}
#button01:hover {
 background-color:#ffcccc;
}
#button01 a {
 display:block;
 width:40px;
 height:40px;
 margin:auto;
 background:url("button01.png")
}
#button01 a:hover {
 width:40px;
 height:40px;
 background:url("button01-hover.png")
}
#hidden01 {
 display:none;
 width:300px;
 height:200px;
 margin:0 0 10px 0;
 border:4px solid #ffcccc;
}
#button02 {
 width:100px;
 height:50px;
 margin:10px;
 padding:6px 0 0 0;
 background-color:#f0f0f0;
}
#button02:hover {
 background-color:#cccccc;
}
#button02 a {
 display:block;
 width:40px;
 height:40px;
 margin:auto;
 background:url("button02.png")
}
#button02 a:hover {
 width:40px;
 height:40px;
 background:url("button02-hover.png")
}
#hidden02 {
 display:none;
 width:300px;
 height:200px;
 margin:0 0 10px 0;
 border:4px solid #cccccc;
}
</style>


 </head>
 <body>

<div style="width:300px;">
<div id="button01"><a href="#" onclick="toggle(0);return false"></a></div>

<div id="button02"><a href="#" onclick="toggle(1);return false"></a></div>
</div>
<div id="hidden01">&nbsp;</div>
<div id="hidden02">&nbsp;</div>

 </body>
</html>

脚本:

        function toggle(offset){
            var i, x;
            var stuff = Array('hidden01', 'hidden02');  //put all the id's of the divs here in order 
            for (i = 0; i < stuff.length; i++){  //hide all the divs
                  x = document.getElementById(stuff[i]);
                  x.style.display = "none";
            }
            // now make the target div visible
            x = document.getElementById(stuff[offset]);
            x.style.display = "block";
         window.onload = function(){toggle(0);}
        }

这是工作,但我想解决两个问题:

1-关闭/隐藏隐藏div,如果我点击它的相应按钮;

2-点击按钮后,修复悬停按钮图像。如果再次点击unfix;

我已经尝试了几乎所有的脚本张贴,不能找到一个解决方案。我不想同时打开潜水器。如果打开一个,关闭其他的

你正在使用jQuery,所以使用jQuery

$(function() {
    function toggle(offset) {
        $('div[id^=hidden]').hide().eq(offset).show();
    }
    toggle(0);
});

我不知道你想要修复的两件事是什么意思。请澄清。


编辑

好吧,我明白你的意思了。我已经清理了很多你的代码。

HTML

<div style="width:300px;">
    <div id="button1"><a></a></div>
    <div id="button2"><a></a></div>
</div>
<div id="hidden1">&nbsp;</div>
<div id="hidden2">&nbsp;</div>
CSS

#button1, #button2 {
    width:100px;
    height:50px;
    margin:10px;
    padding:6px 0 0 0;
    background-color:#f0f0f0;
}
#button1:hover {
    background-color:#fcc;
}
#button2:hover {
    background-color:#ccc;
}
#button1 a, #button2 a {
    display:block;
    width:40px;
    height:40px;
    margin:auto;
}
#button1 a {
    background:url(http://lorempixum.com/40/40?1)
}
#button2 a {
    background:url(http://lorempixum.com/40/40?3)
}
#button1 a:hover, #button1.hover a {
    background:url(http://lorempixum.com/40/40?2)
}
#button2 a:hover, #button2.hover a {
    background:url(http://lorempixum.com/40/40?4)
}
#hidden1, #hidden2 {
    display:none;
    width:300px;
    height:200px;
    margin:0 0 10px 0;
    border:4px solid #fcc;
}
JavaScript

var $buttons = $('div[id^=button]'),
    $hiddenDivs = $('div[id^=hidden]'),
    HOVER_CLASS = 'hover';
$buttons.live('click', function() {
    var $this = $(this),
        i = $this.index();
    $buttons.removeClass(HOVER_CLASS);
    $this.addClass(HOVER_CLASS);
    $hiddenDivs.hide().eq(i).show();
}).first().click();
演示


去年编辑

改变了JavaScript和CSS。http://jsfiddle.net/mattball/bNCNQ/

CSS

#button1:hover a, #button1.hover a {
    background:url(...)
}
#button2:hover a, #button2.hover a {
    background:url(...)
}

JS

$buttons.live('click', function () {
    var $this = $(this),
        i = $this.index(),
        show = !$this.hasClass(HOVER_CLASS);
    $buttons.removeClass(HOVER_CLASS);
    $this.toggleClass(HOVER_CLASS, show);
    $hiddenDivs.hide().eq(i).toggle(show);
});

下面是一个工作演示:http://jsfiddle.net/R6vQ4/33/.

你所有的JavaScript代码都可以浓缩成这个小块(这甚至不是它能得到的那么小):

$(document).ready(function()
{
$('div[id^=button]').click(function()
{
  var element = $('#hidden' + $(this).attr('id').substr(6));
  $('div[id^=button]').css('cssText', 'background-color: none');
  if (element.is(':visible'))
  {
    $(this).css('cssText', 'background-color: none');
    $('div[id^=hidden]').hide();
  } else {
    $('div[id^=hidden]').hide();
    element.show();
    $(this).css('cssText', 'background-color: ' + $(this).css('background-color') + ' !important');
  }
});
});

当你按下按钮时,按钮的状态是"粘"的,但我的技术有点粗糙,所以你可以随意改变它。

当你使用jQuery时,你实际上使用它;)