Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この質問に関連してJavaScriptを介してCSS疑似要素のスタイルを変更する、疑似要素のスタイル属性にアクセスできるjavascriptを使用する方法はありますか?
ブラウザによって異なります。IEがこれをサポートしているとは思いませんが、FireFoxおよびWebkitブラウザーの場合は、次を使用できます。
window.getComputedStyle(element, pseudo-selector);
例えば:
window.getComputedStyle(document.body, ':before');
参照:getComputedStyle