jQuery是一款經典的JavaScript庫,提供了很多方便的函數來操作DOM、處理事件、實現動畫效果等等。那么,jQuery中到底有哪些常用的函數呢?接下來,我們來一一探討。
$(document).ready(function(){ //頁面加載完成后執行的函數 }); $(selector).click(function(){ //點擊事件觸發的函數 }); $(selector).show(); $(selector).hide(); $(selector).toggle(); //顯示/隱藏元素 $(selector).fadeIn(); $(selector).fadeOut(); $(selector).fadeTo(); //淡入淡出/漸變切換元素 $(selector).addClass("class"); $(selector).removeClass("class"); //添加/移除樣式類 $(selector).attr("attribute", "value"); $(selector).removeAttr("attribute"); //設置/移除元素屬性 $(selector).html("content"); $(selector).text("content"); //設置元素內容 $(selector).appendTo(element); $(selector).prependTo(element); //移動元素到指定元素中 $.ajax({ url: "demo.txt", success: function(result){ //成功返回時執行的函數 }, error: function(error){ //發生錯誤時執行的函數 } }); //使用Ajax發送異步請求
以上就是jQuery中常用的一些函數,當然還有很多其他的函數,可以根據具體需求去查閱文檔學習。jQuery的設計理念是“write less, do more”,讓我們在編寫JavaScript代碼時更加高效便捷。