A CSS selector to get last visible div(获取最后一个可见 div 的 CSS 选择器)
问题描述
一个棘手的 CSS 选择器问题,不知道它是否可能.
A tricky CSS selector question, don't know if it's even possible.
假设这是 HTML 布局:
Lets say this is the HTML layout:
<div></div>
<div></div>
<div></div>
<div style="display:none"></div>
<div style="display:none"></div>
我想选择最后一个 div
,它被显示(即不是 display:none
),它将是第三个 div
给定的例子.请注意,实际页面上的 div
数量可能不同(甚至是 display:none
的数量).
I want to select the last div
, which is displayed (ie. not display:none
) which would be the third div
in the given example.
Mind you, the number of div
s on the real page can differ (even the display:none
ones).
推荐答案
您可以使用 JavaScript 或 jQuery 选择和设置样式,但仅 CSS 无法做到这一点.
You could select and style this with JavaScript or jQuery, but CSS alone can't do this.
例如,如果您在网站上实现了 jQuery,您可以这样做:
For example, if you have jQuery implemented on the site, you could just do:
var last_visible_element = $('div:visible:last');
虽然希望您将在您选择的 div 周围包含一个类/ID,但在这种情况下,您的代码将如下所示:
Although hopefully you'll have a class/ID wrapped around the divs you're selecting, in which case your code would look like:
var last_visible_element = $('#some-wrapper div:visible:last');
这篇关于获取最后一个可见 div 的 CSS 选择器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取最后一个可见 div 的 CSS 选择器


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Fetch API 如何获取响应体? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01