jQuery常用方法合集 2

2021-09-11 04:19:56 字數 1029 閱讀 1372

val方法

val方法用於設定和獲取表單元素的值,例如input、textarea的值

//設定值

$("#name").val(「張三」);

//獲取值

$("#name").val();

html方法與text方法

html方法相當於innerhtml text方法相當於innertext

//設定內容

$(「div」).html(「這是一段內容」);

//獲取內容

$(「div」).html()

//設定內容

$(「div」).text(「這是一段內容」);

//獲取內容

$(「div」).text()

區別:html方法會識別html標籤,text方法會那內容直接當成字串,並不會識別html標籤。

width方法與height方法

設定或者獲取高度

//帶引數表示設定高度

$(「img」).height(200);

//不帶引數獲取高度

$(「img」).height();

獲取網頁的可視區寬高

//獲取可視區寬度

$(window).width();

//獲取可視區高度

$(window).height();

scrolltop與scrollleft

設定或者獲取垂直滾動條的位置

//獲取頁面被捲曲的高度

$(window).scrolltop();

//獲取頁面被捲曲的寬度

$(window).scrollleft();

offset方法與position方法

offset方法獲取元素距離document的位置,position方法獲取的是元素距離有定位的父元素的位置。

//獲取元素距離document的位置,返回值為物件:

$(selector).offset();

//獲取相對於其最近的有定位的父元素的位置。

$(selector).position();

jQuery常用方法合集 1

選擇器 基本選擇器 層級選擇器 屬性選擇器 與css類似,這裡不再細說,詳細猛戳這裡。基本篩選器 複製 li first 第乙個元素 li last 最後乙個元素 tr even 索引為偶數的元素,從 0 開始 tr odd 索引為奇數的元素,從 0 開始 tr eq 1 給定索引值的元素 tr g...

jquery常用的方法2

3 prepend content 向每個匹配的元素內部前置內容。ex html i would like to say jquery p prepend hello 結果 helloi would like to say 4 pretendto content 實際上,使用這個方法是顛倒了常規的 ...

EasyUi Tree Tree常用方法合集

專案中用到了 對easyui tree 右移到 右邊 select 中,然後 將右側 select 中移除時,需要取消左側的tree功能,如下 獲取 右側的 select 物件 var select validobj document.getelementbyid select標籤的id 獲取 tr...