jQuery學習積累

2021-07-29 06:11:58 字數 588 閱讀 3033

目的:為了保護包預設引數,也就是defaults裡面的引數。

當外掛程式使用時,預設使用defaults裡面的引數值,當options有值時,則會將defaults中的值替換掉,不存在的保留;

{}:第一引數

defaults:第二引數

options:第三引數

測試**

var defaults =   

var options =

var settings = $.extend( {}, defaults , options);

//測試內容

console.log("defaults:"+json.stringify( defaults ));

console.log("options:"+json.stringify( options));

console.log("settings:"+json.stringify( settings ));

結果顯示:

defaults:

options:

settings

jQuery 學習積累 3

一 獲取html的內容和屬性 三個簡單實用的用於 dom 操作的 jquery 方法 attr 方法用於獲取屬性值。二 設定文字內容和屬性 btn1 click function btn2 click function btn3 click function 修改屬性 button click fu...

jQuery 學習積累 4

一 遍歷 向上遍歷 1 parent 方法返回被選元素的直接父元素。2 parents 方法返回被選元素的所有祖先元素,它一路向上直到文件的根元素 3 parentsuntil 方法返回介於兩個給定元素之間的所有祖先元素。下面的例子返回介於 與 元素之間的所有祖先元素 document ready ...

JQuery學習過程小知識積累

語法 描述 this 當前 html 元素 p 所有 元素 p.intro 所有 class intro 的 元素 intro 所有 class intro 的元素 intro id intro 的元素 ul li first 每個 自我總結 a 得到的是標籤並不是id a id用 獲取 class...