使用jQuery 從Div 中刪除CSS
在您的應用程式中,您有一個將CSS 屬性應用於div 的點擊事件處理程序。但是,在執行其他功能後,您希望刪除應用程式的 CSS。以下是使用 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.
”css() 方法接受鍵值對物件作為參數。透過傳遞空字串 ('') 作為值,您可以有效地刪除指定的 CSS 屬性。在本例中,我們刪除了先前套用於 div 的背景顏色和字體粗細屬性。
以上是如何使用 jQuery 從 Div 中刪除特定的 CSS 屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!