搜尋
首頁web前端css教學jQuery 中 css() 方法有什麼用?

jQuery 中 css() 方法有什么用?

Jquery 包含各種方法,其中之一是 CSS()。 CSS() 方法用於取得應用於特定 HTML 元素的特定 CSS 屬性的值。此外,它還用於為特定 HTML 元素設定 CSS 屬性及其值。開發人員也可以使用 CSS() 方法更新 CSS 屬性值。

在本教學中,我們將學習使用 Jquery 的 css() 方法來存取和設定特定 HTML 元素的 CSS 屬性。

文法

使用者可以依照下面的語法來使用Jquery的css()方法。

Var value = $('element').css(property);
$('element').css(property, value);
$('element').css(property, function() {
   return value;
});
$('element').css({property1: value1, property2: value2, ...});

css()方法接受一個或兩個參數。在這裡,'property'是要存取或設定其值的CSS屬性名稱。此外,它還接受包含多個CSS屬性鍵值對的物件。

範例 1

在下面的範例中,我們為div元素設定了背景顏色。當使用者點擊按鈕時,回呼函數使用Jquery的CSS()方法來存取div元素的'background-color'屬性值。

在輸出中,使用者可以在點擊按鈕後觀察 RGB 值中 div 元素的背景顏色。

<html>
<head>
   <style>
      .text {
         background-color: rgb(88, 236, 236);
      }
   </style>
   <script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"> </script>
</head>
<body>
   <h2 id="Using-the-i-CSS-method-i-of-JQuery-to-access-the-value-of-background-color">Using the <i> CSS() method </i> of JQuery to access the value of background-color</h2>
   <div class = "text"> This is a sample div element. </div>
   <h3 id="Click-the-below-button-to-get-the-background-color-of-the-above-div-element"> Click the below button to get the background color of the above div element. </h3>
   <button id = "btn"> Click Me </button>
   <div id = "output"> </div>
   <script>
      $('#btn').click(function () {
         var color = $('.text').css('background-color');
         let output = document.getElementById('output');
         output.innerHTML = "The background color of the div element is " + color;
      });
   </script>
</body>
</html>

範例 2

在下面的範例中,我們使用css()方法為div元素設定背景顏色。在這裡,當使用者點擊按鈕時,回呼函數使用其類別名稱和css()方法存取div元素。我們將'background-color'作為第一個參數,屬性名稱,'red'作為第二個參數,屬性值進行傳遞。

在輸出中,使用者可以觀察到,當點擊按鈕時,div 元素的背景顏色會變成紅色。

<html>
<head>
   <style>
      .text {
         background-color: rgb(31, 219, 163);
      }
   </style>
   <script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"> </script>
</head>
<body>
   <h2 id="Using-the-i-CSS-method-i-of-JQuery-to-set-the-value-of-background-color">Using the <i> CSS() method </i> of JQuery to set the value of background-color</h2>
   <div class = "text"> This is a sample div element. </div>
   <h3 id="Click-the-below-button-to-set-the-red-background-color-of-the-above-div-element"> Click the below button to set the red background color of the above div element. </h3>
   <button id = "btn"> Click Me </button>
   <script>
      $('#btn').click(function () {
         var color = $('.text').css('background-color', 'red');
      });
   </script>
</body>
</html>

範例 3

在下面的範例中,我們使用隨機像素值來變更div元素的填充。在這裡,我們使用'padding'作為css()方法的第一個參數,並將函數作為css()方法的第二個參數。

在這個函數中,我們使用Math.random()方法來取得1到50之間的隨機數,並將隨機值傳回以設定為HTML div元素的填滿。在輸出中,使用者可以觀察到隨機的填充值。

<html>
<head>
   <style>
      .text {
         background-color: rgb(31, 219, 163);
      }
   </style>
   <script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"> </script>
</head>
<body>
   <h2 id="Using-the-i-CSS-method-i-of-JQuery-to-get-css-property-value-from-the-callback-function-and-set-it">Using the <i> CSS() method </i> of JQuery to get css property value from the callback function and set it</h2>
   <div class = "text"> Welcome to the TutorialsPoint! </div>
   <h3 id="Click-the-below-button-to-set-the-custom-padding-for-the-above-div-element"> Click the below button to set the custom padding for the above div element. </h3>
   <button id = "btn"> Click Me </button>
   <div id = "output"> </div>
   <script>
      $('#btn').click(function () {
         var color = $('.text').css('padding', function () {
            // generate a random number between 0 to 50
            var random = Math.floor(Math.random() * 50);
            let padding = random + 'px';
            let output = 'The padding value is: ' + padding;
            $('#output').text(output);
            return padding;
         });
      });
   </script>
</body>
</html>

Example 4

的中文翻譯為:

範例4

#在下面的範例中,我們使用CSS()方法將多個CSS屬性設定給存取的HTML元素。在這裡,我們將物件作為CSS()方法的參數傳遞。該物件包含多個CSS屬性-值對。

當使用者點擊該按鈕時,它會將所有 CSS 屬性套用到 div 元素,使用者可以在輸出中看到該元素。

<html>
<head>
   <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"> </script>
</head>
<body>
   <h2 id="Using-the-i-CSS-method-i-of-JQuery-to-set-multiple-CSS-properties-to-the-element">Using the <i> CSS() method </i> of JQuery to set multiple CSS properties to the element</h2>
   <div class = "text"> Welcome to the TutorialsPoint! </div>
   <h3 id="Click-the-below-button-to-set-multiple-CSS-properties-to-the-above-div-element">Click the below button to set multiple CSS properties to the above div element.</h3>
   <button id = "btn"> Click Me </button>
   <div id = "output"> </div>
   <script>
      $('#btn').click(function () {
         var color = $('.text').css({
            'color': 'red',
            'background-color': 'blue',
            'font-size': '20px',
            'border': '2px solid green',
            "width": "500px",
            "height": "50px",
         });
      });
   </script>
</body>
</html>

開發人員學習使用Jquery的css()方法。在第一個範例中,我們使用css()方法來存取CSS屬性值。在第二個範例中,我們將CSS屬性設定為HTML元素。

在第三個範例中,我們將函數傳回的值設定為CSS屬性值。在最後一個範例中,我們使用CSS()方法將多個CSS屬性值設定給HTML元素。

以上是jQuery 中 css() 方法有什麼用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文轉載於:tutorialspoint。如有侵權,請聯絡admin@php.cn刪除
Draggin&#039;和droppin&#039;在反應中Draggin&#039;和droppin&#039;在反應中Apr 17, 2025 am 11:52 AM

React生態系統為我們提供了許多庫,所有庫都集中在拖放的相互作用上。我們有反應,反應,可愛dnd,

快速軟件快速軟件Apr 17, 2025 am 11:49 AM

最近有一些關於快速軟件的完美互連的事情。

帶有背景折疊的嵌套梯度帶有背景折疊的嵌套梯度Apr 17, 2025 am 11:47 AM

我可以說我經常使用背景折疊。 IT Wager IT幾乎從未在日常CSS工作中使用。但是在斯特凡·朱迪斯(Stefan Judis)的帖子中,我想起了它,

使用React Hooks使用requestAnimationFrame使用React Hooks使用requestAnimationFrameApr 17, 2025 am 11:46 AM

使用RequestAnimationFrame進行動畫化應該很容易,但是如果您還沒有徹底閱讀React的文檔,那麼您可能會遇到一些事情

需要滾動到頁面頂部嗎?需要滾動到頁面頂部嗎?Apr 17, 2025 am 11:45 AM

向用戶提供此鏈接的最簡單方法是針對元素上的ID的鏈接。如此...

最好的(GraphQl)API是您編寫的API最好的(GraphQl)API是您編寫的APIApr 17, 2025 am 11:36 AM

聽著,我不是GraphQL專家,但我確實喜歡與之合作。作為前端開發人員,它向我曝光數據的方式非常酷。它就像一個菜單

在保留邊框半徑的同時,擴展盒子的各種方法在保留邊框半徑的同時,擴展盒子的各種方法Apr 17, 2025 am 11:19 AM

我最近注意到Codepen的一個有趣的更改:在懸停在主頁上的筆時,有一個矩形,圓角在後面擴展。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
1 個月前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
1 個月前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
1 個月前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.聊天命令以及如何使用它們
1 個月前By尊渡假赌尊渡假赌尊渡假赌

熱工具

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具