gpt4 book ai didi

jquery - 将CSS背景颜色添加到Javascript函数中的按钮

转载 作者:太空宇宙 更新时间:2023-11-04 14:51:17 24 4
gpt4 key购买 nike

我想在 javascript 函数中为按钮添加背景色。这是我的代码。

$('#theme').on('click', function () {
myApp.modal({
verticalButtons: true,
buttons: [
{
text: 'Themes Category',
onClick: function() {
document.getElementById('content_01').style.display = "none";
document.getElementById('content_02').style.display = "block";
}
},
{
text: 'All themes',
onClick: function() {
myApp.alert('You clicked second button!')
}
},
]
})
});
  <script type="text/javascript" src="js/my-app.js"></script>

<button class="col button button-fill" id="theme">Themes</button>

我添加了 buttons.style.background = '#FF00AA'; 来为函数中的按钮添加背景颜色。但它不起作用。那我该怎么做呢。谁能帮帮我。

最佳答案

使用this.style.backgroundColor="red";

OR 在 JQuery 中 $(this).css("background-color","re​​d");

看这里:https://www.w3schools.com/jquery/jquery_css.asp

$('#theme').on('click', function () {
this.style.backgroundColor="red";
myApp.modal({
verticalButtons: true,
buttons: [
{
text: 'Themes Category',
onClick: function() {
document.getElementById('content_01').style.display = "none";
document.getElementById('content_02').style.display = "block";
}
},
{
text: 'All themes',
onClick: function() {
myApp.alert('You clicked second button!')
}
},
]
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<button class="col button button-fill" id="theme">Themes</button>

关于jquery - 将CSS背景颜色添加到Javascript函数中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50922132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com