Je veux ajouter une couleur de fond à un bouton dans une fonction javascript. Voici mon code.
$('#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>
J'ai ajouté buttons.style.background = '#FF00AA';
pour ajouter une couleur d'arrière-plan au bouton qui se trouve dans la fonction. Mais cela ne fonctionne pas. Comment puis-je faire ? Quelqu'un peut-il m'aider ?