示例:
$(document).ready(function(){
height = $('#container-bottom:before').height();
alert(height);
});
提醒null
(当然,我知道值不是null
。
答案 0 :(得分:5)
不幸的是,CSS伪元素(如:before
,:after
)不是DOM的一部分(尽管它们被渲染得像它们一样) - 因此它们不能用jQuery操作。
请参阅:Selecting and manipulating CSS pseudo-elements such as ::before and ::after using jQuery