jQuery---w3c 学习
2020-12-05 13:52
标签:class div c t sp strong int tab ble html 文件 元素。 元素。 元素。 元素 元素 jQuery 是为事件处理特别设计的。 由于 jQuery 是为处理 HTML 事件而特别设计的,那么当您遵循以下原则时,您的代码会更恰当且更易维护: jQuery---w3c 学习,搜素材,soscw.com jQuery---w3c 学习 标签:class div c t sp strong int tab ble html 文件 原文地址:http://www.cnblogs.com/songacm/p/3701125.htmljQuery 元素选择器
jQuery 属性选择器
jQuery CSS 选择器
更多的选择器实例
语法
描述
$(this)
当前 HTML 元素
$("p")
所有
$("p.intro")
所有 class="intro" 的
$(".intro")
所有 class="intro" 的元素
$("#intro")
id="intro" 的元素
$("ul li:first")
每个
的第一个
$("[href$=‘.jpg‘]")
所有带有以 ".jpg" 结尾的属性值的 href 属性
$("div#intro .head")
id="intro" 的
结论