如何使用选择器获取元素的值

时间:2011-11-22 02:42:30

标签: jquery css pseudo-element

示例:

$(document).ready(function(){    

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

});

提醒null(当然,我知道值不是null

1 个答案:

答案 0 :(得分:5)

不幸的是,CSS伪元素(如:before:after)不是DOM的一部分(尽管它们被渲染得像它们一样) - 因此它们不能用jQuery操作。

请参阅:Selecting and manipulating CSS pseudo-elements such as ::before and ::after using jQuery