jQuery的屬性和樣式

2022-09-10 11:54:12 字數 1544 閱讀 4368

prop  獲取在匹配的元素集中的第乙個元素的屬性值。

attr(屬性名 屬性值)  設定屬性

全選全部選

$("#***").change(function())

// 反選

$("#***").change(function())

$("#***2").change(function())

})

<

body

>

<

form

action

="#"

>

<

span

id="span"

data-id

="1001"

>姓名

span

>

<

input

type

="text"

name

="name"

>

<

br/>

<

input

type

="checkbox"

name

="***"

id="***"

>

<

label

for="***"

>全選/全部選

label

>

<

input

type

="checkbox"

name

="***"

id="***2"

>

<

label

for="***"

>反選

label

>

form

>

<

input

type

="checkbox"

name

="">

<

input

type

="checkbox"

name

="">

<

input

type

="checkbox"

name

="">

body

>

change     改變(事件)

prop           屬性

:not([id])      不同的id

html()     divspan(包含html標籤的**)

text()    divspan      (純文字)

val()   (互動控制項【表單控制項】的值)

沒有引數時,獲取帶引數的值

$("div").text("");     

text()不解析**

text 純文字 div span

$("div").html("");

html()解析**

$("div").css("color","red");

.css操作行樣式display

jquery的屬性和樣式

1.attr 和prop attr 設定或返回被選元素的屬性值 attr 屬性名 獲取屬性 attr 屬性名,屬性值 設定屬性 span attr data id 1002 data id 1001 console.log span attr id 獲取id console.log span att...

Jquery的一些屬性和樣式

刪除樣式 removeclass 方法 在 裡面新增classname是每個匹配元素移除的乙個或多個用空格隔開的樣式名稱 function index class 在乙個函式裡面,返回乙個或者多個將要被移除的樣式名稱 值得注意的是,如果乙個樣式類名稱作為乙個引數,只有這種樣式類會被從匹配的元素集合中...

jQuery 屬性操作和樣式函式

用於獲得或設定元素的dom屬性 方法描述 addclass 向匹配的元素新增指定的類名。attr 設定或返回匹配元素的屬性和值。hasclass 檢查匹配的元素是否擁有指定的類。html 設定或返回匹配的元素集合中的 html 內容。removeattr 從所有匹配的元素中移除指定的屬性。remov...