jQuery :last-of-type 选择器
定义和用法
:last-of-type 选择器选择所有作为其父元素中特定类型的最后一个子元素的元素。
提示:这与 :nth-last-of-type(1) 相同。
提示:使用 :first-of-type 选择器选择所有作为其父元素中特定类型的第一个子元素的元素。
语法
$(":last-of-type")
亲自试一试 - 示例
选择所有 <div> 元素中的最后一个 <p> 元素
如何选择所有 <div> 元素中的最后一个 <p> 元素。
:last、:last-child 和 :last-of-type 之间的区别
显示 :last、:last-child 和 :last-of-type 选择器之间的区别。