gpt4 book ai didi

jquery - 从 jquery 之后选择类悬停

转载 作者:太空宇宙 更新时间:2023-11-04 12:40:33 25 4
gpt4 key购买 nike

我有一个名为 customtooltip 的类,在我的 CSS 中有

.customtooltip:hover::after{

// this emulates a tooltip, so it is a popup with info

}

我希望能够从 jquery 中控制它。目前我只能选择 .customtooltip 或在工具提示上使用 .hover 事件,但我希望能够将弹出窗口/工具提示重新定位到鼠标所在的位置,我相信为此我需要 jquery。

谢谢,

最佳答案

你不能; DOM 中不存在 css 伪元素,因此 JavaScript 无法访问。

您可以使用 window.getComputedStyle() 检索一些属性:

var elem = document.querySelector('.customtooltip'),
currentTop = window.getComputedStyle(elem, ':after').top;

但是您不能设置属性。

也就是说,CSS 伪元素模块第 4 级开始于:

  1. Additions to the CSS Object Model

Pseudo-elements should be reachable by script, stylable from script, and available as event targets.

Note We may extend this section in the future to allow creation of pseudo-elements from script.

因此,希望这种限制在不久的将来会有所改变。

引用资料:

关于jquery - 从 jquery 之后选择类悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26914173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com