JQuery學習過程小知識積累

2021-08-15 22:03:11 字數 879 閱讀 6306

語法                           描述

$(this) 當前 html 元素

$("p") 所有 元素

$("p.intro") 所有 class="intro" 的 元素

$(".intro") 所有 class="intro" 的元素

$("#intro") id="intro" 的元素

$("ul li:first") 每個

自我總結:

$("a")得到的是標籤並不是id=a id用#獲取 class用.獲取

即寫法為: $(

"p.id") / $(

"p#class")

1.$.post,$.get是jquery對ajax進行封裝後的寫法.

2.$.ajax();

是用jquery呼叫ajax的寫法。

3.簡單請求用第一種,需要指定一些特殊屬性則需第二種

示例:

id="post1">dopostbutton>

// post

var postresponse;

$("button#post1").click(function

()),

datatype: "json",

success: function

(data,status)

});});

script>

小知識積累

1.有關 和printf的應用 printf是從右向左壓棧 printf d,d n ptr,ptr 先是 ptr 從右至左,所以輸出的兩個值是一樣的 ptr 123 那麼先是 ptr 123 然後是ptr 2.float a 1.0f int a的作用是將浮點數字址開始的sizeof int 個位...

jquery碎片知識積累

ios端限制ios三位有效數字和輸入小數點 var bodyel document.body var top 0 禁止頁面滾動 function fixed 允許頁面滾動 function fixednone 僅針對移動端進行判斷,pc端失去焦點時會出現頁面閃爍 function getscroll...

jQuery學習積累

目的 為了保護包預設引數,也就是defaults裡面的引數。當外掛程式使用時,預設使用defaults裡面的引數值,當options有值時,則會將defaults中的值替換掉,不存在的保留 第一引數 defaults 第二引數 options 第三引數 測試 var defaults var opt...