Supprimer le CSS d'un Div avec jQuery
Dans votre application, vous disposez d'un gestionnaire d'événements de clic qui applique les propriétés CSS à un div. Cependant, après avoir exécuté d'autres fonctionnalités, vous souhaitez supprimer le CSS appliqué. Voici comment y parvenir en utilisant jQuery :
<p>In my App I have the following:</p> <pre class="brush:php;toolbar:false">$("#displayPanel div").live("click", function(){ $(this).css({'background-color' : 'pink', 'font-weight' : 'bolder'}); // Perform other functionalities here // Remove the applied CSS $(this).css({'background-color' : '', 'font-weight' : ''}); });
When I click on a Div, the color of that Div is changed. Within that Click function I have some functionalities to do. After all that I want to remove the applied Css from the Div. How could I do it in JQuery?
”问题答案:“You can remove specific CSS that is on the element like this:
$(this).css({'background-color' : '', 'font-weight' : ''});
Although I agree with karim that you should probably be using CSS classes.
”La méthode css() accepte un objet paire clé-valeur comme argument. En passant une chaîne vide ('') comme valeur, vous supprimez effectivement la propriété CSS spécifiée. Dans ce cas, nous supprimons à la fois les propriétés background-color et font-weight qui étaient précédemment appliquées au div.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!