如何通过选择器获取元素的值
示例:
$(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,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