最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why is document.querySelector not working on pseudo element? - Stack Overflow

programmeradmin1浏览0评论

I am playing with pseudo elements and javascript but some how i can not style it using javascript.

    var div = document.querySelector(":before");
    div.style["display"] ="none";
div{
    width:200px;
    height:200px;
    background:red;
    position:relative;
}

div:before{
    position:absolute;
    content:'';
    top:0;
    right:-100px;
    width:100px;
    height:100%;
    background:green;
}
<div></div>

I am playing with pseudo elements and javascript but some how i can not style it using javascript.

    var div = document.querySelector(":before");
    div.style["display"] ="none";
div{
    width:200px;
    height:200px;
    background:red;
    position:relative;
}

div:before{
    position:absolute;
    content:'';
    top:0;
    right:-100px;
    width:100px;
    height:100%;
    background:green;
}
<div></div>

do anyone knows why this is not working?

Share Improve this question asked Sep 29, 2014 at 8:01 Gildas.TamboGildas.Tambo 22.7k7 gold badges53 silver badges79 bronze badges 4
  • 4 Pseudo elements are not part of the content. They don't have any existence in DOM so you basicly can't manipulate something that doesn't exist – user28470 Commented Sep 29, 2014 at 8:05
  • 7 CSS Pseudo-classes will never return any elements, as specified in the Selectors API w3/TR/selectors-api/#grammar – invernomuto Commented Sep 29, 2014 at 8:07
  • 3 Unfortunately you can only create pseudo elements (shadow elements) with .createShadowRoot() but you cannot access them. – Derek 朕會功夫 Commented Sep 29, 2014 at 8:14
  • The answer here (stackoverflow./questions/49106088/…) shows how you can use document.querySelector, just change the pseudo element to a span (if possible) – plugincontainer Commented Jun 21, 2019 at 14:38
Add a ment  | 

1 Answer 1

Reset to default 10

If you want to style pseudo elements from javascript you have to use the CSSOM to inject the rules. It's not trivial, but it's possible.

var sheet = document.styleSheets[0]; //get style sheet somehow
var rules = sheet.rules; 
sheet.insertRule('div:before { display: none; }', rules.length);

a slightly modified example from this article

CCSOM Reference

发布评论

评论列表(0)

  1. 暂无评论