jQuery :last-of-type 选择器
jQuery 教程
· 2019-03-10 08:28:21
实例
选取属于其父元素的最后一个 <p> 元素的每个 <p> 元素:
$("p:last-of-type")
定义和用法
:last-of-type 选择器选取属于其父元素的特定类型的最后一个子元素的所有元素。
提示:该选择器与 :nth-last-of-type(1) 相同。
提示:请使用 :first-of-type 选择器来选取属于其父元素的特定类型的第一个子元素的所有元素。
语法
$(":last-of-type")
点击查看所有 jQuery 教程 文章: https://www.codercto.com/courses/l/35.html
Design Accessible Web Sites
Jeremy Sydik / Pragmatic Bookshelf / 2007-11-05 / USD 34.95
It's not a one-browser web anymore. You need to reach audiences that use cell phones, PDAs, game consoles, or other "alternative" browsers, as well as users with disabilities. Legal requirements for a......一起来看看 《Design Accessible Web Sites》 这本书的介绍吧!