jquery屬性過濾選擇器

2022-07-02 02:03:08 字數 776 閱讀 9932

$("div[id]").addclass("highlight"); //查詢所有含有id屬性的div元素

$("input[name='basketball']").attr("checked",true);   //name屬性值為basketball的input元素選中

$("input[name!='basketball']").attr("checked",true);   //name屬性值不為basketball的input元素選中

$("input[name^='foot']").attr("checked",true);  //查詢所有 name 以 'foot' 開始的 input 元素

$("input[name$='ball']").attr("checked",true); //查詢所有 name 以 'ball' 結尾的 input 元素

$("input[name*='sket']").attr("checked",true);  //查詢所有 name 包含 'sket' 的 input 元素

$("input[id][name$='ball']").attr("checked",true);  //找到所有含有 id屬性,並且它的 name屬性是以 ball結尾的

jQuery之屬性過濾選擇器

在html文件中,元素的開始標記中通常包含有多個屬性 attribute 在jquery中,除了直接使用id和class屬性作為選擇器之外,還可以根據各種屬性 如title等 對由選擇器 查詢到的元素進行過濾,屬性過濾選擇器包含了在中括號 中,而不是以冒號開頭,通常使用 選擇器 屬性過濾選擇器 語法...

jQuery之子屬性過濾選擇器

1 first child選擇器 用於選擇其父級的第乙個子元素的所有元素,格式 selector first child 如 ul first child css text decoration underline css color blue 2 last child選擇器 用於選擇其父級的最後乙...

jQuery之屬性過濾選擇器

在html文件中,元素的開始標記中通常包含有多個屬性 attribute 在jquery中,除了直接使用id和class屬性作為選擇器之外,還可以根據各種屬性 如title等 對由選擇器 查詢到的元素進行過濾,屬性過濾選擇器包含了在中括號 中,而不是以冒號開頭,通常使用 選擇器 屬性過濾選擇器 語法...