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 选择器


基础教程推荐
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01