JQuery 中簡單的幾個 類選擇器 使用方法

2022-02-10 04:38:32 字數 931 閱讀 7956

前台**:

<%@ page language="

c#" autoeventwireup="

true

" codebehind="

testclassselector.aspx.cs

" inherits="

" %>

"">

$(".first_div, .first_span")

將包含有.first_div  或者 .first_span" 的物件都取到。 這裡取到 4 個 物件。

此處的html對應

this is the first div

this is the first span

this is the first span +eric sun class.

$(".first_div .first_span")

將以 .first_div 為類的控制項 下的 以 .first_span 為類 的物件取到(類與類之間帶有空格 逐層取)。 這裡只取到 1 個。

對應的 classname="first_span"  此處的html對應

this is the first span

$(".first_span.eric_sun_class")

將包含有.first_span 並且同時包含有 .eric_sun_class 類的 物件取到(類與類之間沒有空格 類似於 『與』 操作)。 這裡只取到1個。 

對應的 classname="first_span eric_sun_class"  此處的html 對應

this is the first span +eric sun class.

JQuery 中簡單的幾個 類選擇器 使用方法

前台 page language c autoeventwireup true codebehind testclassselector.aspx.cs inherits first div,first span 將包含有.first div 或者 first span 的物件都取到。這裡取到 4 ...

簡單的jQuery日期選擇

建立乙個存放日期的文字框 點選文字框彈出乙個選擇框 引用jquery檔案 引用bootstrap檔案 使用模態框 使用模態框的方法設定點選文字框顯示模態框 手動開啟模態框的方法 id modal show 關閉 點選確定後會自動關閉 id modal hide 填充資料,建立乙個外部js檔案 js方...

JQuery 中幾個小點

jquery 中的鏈式操作 js level a click funcation 3.對於多個物件的少量操作,可以每個物件寫一行,如果涉及子元素,可以考慮適當的縮排.this addclass highlight children li show end siblings removeclass h...