...为我的私人编码提前道歉,我还在玩这个。简而言之,我试图让3个(将来可能更多)按钮,当单独单击时,显示具有特定.class名称的所有div(同时隐藏其他具有其他特定.class名称的div)。像假的内容切换系统。
$("#mr-button-01").click(function() {
$(".key-01").css({ "background":"#ff00ff" }).animate( "slow" );
$(".key-02, .key-03").removeAttr('style');
$(".info-01").show();
$(".info-02, .info-03").hide();
return false;
});
现在, mr-button-01 和 key-01 是相同的元素(只是样式的id和类)。对于每个不同的按钮重复此代码,只需关闭或关注其他“信息”类。可能不是最好的行动方案,但是每个按钮都有不同的东西,并且有不同的'激活'.css风格,所以我不知道还有其他方法来处理它。
原文点:我正在试图弄清楚如何检查页面上是否还有“ .info-01 ”。如果没有,我们保持,但一起杀掉切换按钮。有点像...
if
.info-01 DOES exist
proceed with original ridiculous 'click sorting' thing
else
.info-01 DOESN'T exist on the page
.#mr-button-01 click does nothing
.key-01 (aka #mr-button-01) has a "dead" .css style applied to it
我知道有':不',以及其他一些选项 - 我只是不清楚语法或处理此问题的最佳方法。任何帮助都将非常感激,并随意建议一个替代方法,一个更简洁的方法来做到这一点,以消除膨胀等。
HTML,非常基本:
<div id="nigga">
<a href="#" id="mr-button-01"><div class="key-01">Choice 01</div></a>
<a href="#" id="mr-button-02"><div class="key-02">Choice 02</div></a>
<a href="#" id="mr-button-03"><div class="key-03">Choice 03</div></a>
</div>
答案 0 :(得分:0)
也许这就是你在寻找:
$("#mr-button-01").click(function(){
// Check if element with searched class exists
if($('.info-01')){
//Apply css to clicked button
$(this).animate({'background-color', 'ff00ff'), 'slow', function(){
//Open info-1
$(".info-01").show();
//Hide info-02 and info-03 if they are shown
$(".info-02").hide();
$(".info-03").hide();
});
}else{
//If searched class doe's not exist
$(this).addClass('dead css class name');
return false;
}
});
答案 1 :(得分:0)
你的html和js看起来似乎太兼容了,或许可以尝试更多的东西:
<a href="#" class="mr-button" data-id="1"><div class="key key-1">Choice 01</div></a>
<a href="#" class="mr-button" data-id="2"><div class="key key-2">Choice 02</div></a>
<a href="#" class="mr-button" data-id="3"><div class="key key-3">Choice 03</div></a>
和
$(".mr-button").click(function() {
$key = $(".key-" + $(this).attr("data-id")); // locate key using this data-id
if($key.length != 0){ // if $key exists, do silly thangs
$key.show();
$(".key").hide();
}
return false;
});
这是一个更多的html,但它是更可重用的代码。