如何通过选择器获取元素的值

发布于 2024-12-17 06:24:52 字数 210 浏览 1 评论 0原文

示例:

$(document).ready(function(){    

   height = $('#container-bottom:before').height();
   alert(height);

});

Alerts null(当然我知道该值不是 null)。

Example:

$(document).ready(function(){    

   height = $('#container-bottom:before').height();
   alert(height);

});

Alerts null (and I know the value is not null of course).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

度的依靠╰つ 2024-12-24 06:24:52

不幸的是,CCS 伪元素(如 :before:after)不是 DOM 的一部分(尽管它们被渲染成好像是)——因此它们不能使用 jQuery 进行操作。

请参阅:选择和操作 CSS 伪元素,例如使用 jQuery 之前和之后

Unfortuantely CCS pseudo-elements (like :before, :after) are not part of the DOM (although they're rendered as if they were) - thus they can't be manipulated with jQuery.

See: Selecting and manipulating CSS pseudo-elements such as ::before and ::after using jQuery

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文