【问题标题】:How to Change button color on the click?如何在点击时更改按钮颜色?
【发布时间】:2021-07-16 13:36:49
【问题描述】:

有一个这样的网站:

需要的是,当你点击一个按钮时,这个按钮的颜色变成淡紫色,之前选中的按钮变成白色。

    $(document).ready(function() {
        all__buttons=document.querySelectorAll('.header__button');
        /*selected__button.click= function(){
                selected__button.backgroundColor='#5f3ec0';
            
        };*/
    
        function changeColor(inputbutton) {
            inputbutton.style.backgroundColor='#5f3ec0';
        
        }
    
            [].forEach.call(all__buttons, function(selected__button){
                selected__button.addEventListener('click', changeColor);
            }); 
    }
    )
body {
    margin: 0;
    padding: 0;
}

.globalcontainer {
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 0px;
    margin-left: 15px;
}

.header > .header__text {
position: relative;
width: 93px;
height: 24px;
left: 0;
margin-top: 129px;
margin-bottom: 20px;

font-family: TT Norms;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 100%;
/* identical to box height, or 24px */


color: #000000;
}

/*
.header__buttons {
    left: 0;
    top: 193px;
}
*/


.header__button {
    border-radius: 3px;
    background-color: #fff;
}
<html>
<head>
<!-- <link rel="stylesheet" href="testsite.css">-->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Test Example</title>
<link rel="stylesheet" type="text/css" href="../css/mobile.css" media="screen and (min-width: 320px) and (max-width: 639px)"></link>
<link rel="stylesheet" type="text/css" href="../css/tablet.css" media="screen and (min-width: 640px) and (max-width: 1023px)"></link>
<link rel="stylesheet" type="text/css" href="../css/desktop.css" media="screen and (min-width: 1024px) and (max-width: 1920px)"></link>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>

</head>
<body>
    <div class="globalcontainer">
        <div class="header">
                <div class="header__text">
                    Обзоры
                </div>
                <div class="header__buttons">
                    <span>
                        <button class="header__button">Все</button>
                        <button class="header__button">Видео</button>               
                        <button class="header__button">Текст</button>               
                        <button class="header__button">Обзоры</button>
                        <button class="header__button">Сравнения</button>
                        <button class="header__button">Краш видео</button>
                        <button class="header__button">Распаковка</button>
                    </span>
                </div>
        </div>      
        <div class="content">       
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
        </div>      
    </div>
<script type="text/javascript" src="jsactions.js"></script>
</body>
</html>

但是结果,点击鼠标后,按钮颜色并没有变成淡紫色。告诉我如何在点击时更改按钮的颜色。

【问题讨论】:

  • 像这样使用style:function changeColor(inputbutton) { inputbutton.style.backgroundColor='#5f3ec0'; }
  • @coder 它没有帮助。

标签: javascript html css layout


【解决方案1】:

$(document).ready(function() {
   $('.header__button').click(function(){
       $('.header__button').removeClass('lilac');
       $(this).addClass('lilac');
   });            
});
body {
    margin: 0;
    padding: 0;
}

.globalcontainer {
    margin-top: 0px;
    margin-right: 15px;
    margin-bottom: 0px;
    margin-left: 15px;
}

.header > .header__text {
position: relative;
width: 93px;
height: 24px;
left: 0;
margin-top: 129px;
margin-bottom: 20px;

font-family: TT Norms;
font-style: normal;
font-weight: bold;
font-size: 24px;
line-height: 100%;
/* identical to box height, or 24px */


color: #000000;
}

/*
.header__buttons {
    left: 0;
    top: 193px;
}
*/


.header__button {
    border-radius: 3px;
    background-color: #fff;
}
.lilac {
    background-color: #5f3ec0;
}
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>

<div class="globalcontainer">
        <div class="header">
                <div class="header__text">
                    Обзоры
                </div>
                <div class="header__buttons">
                    <span>
                        <button class="header__button">Все</button>
                        <button class="header__button">Видео</button>               
                        <button class="header__button">Текст</button>               
                        <button class="header__button">Обзоры</button>
                        <button class="header__button">Сравнения</button>
                        <button class="header__button">Краш видео</button>
                        <button class="header__button">Распаковка</button>
                    </span>
                </div>
        </div>      
        <div class="content">       
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
                <div class="cardexample">
                </div>
        </div>      
</div>

【讨论】:

    猜你喜欢
    • 2013-11-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-07-21
    • 2019-05-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多