其他分享
首页 > 其他分享> > document怎么获取到before after这种伪元素的style

document怎么获取到before after这种伪元素的style

作者:互联网

window.getComputedStyle(ele,null)

这个函数可以获取dom对象的css的显示的属性。如果只是当前元素,而不是before,after伪元素,那么函数的第二个参数直接填null。

而如果是伪元素的话:

window.getComputedStyle(ele,'after');
window.getComputedStyle(ele,'before');

标签:style,元素,after,getComputedStyle,ele,window,document,before
来源: https://blog.csdn.net/qq_34626094/article/details/122279810