如何讀寫僞類元素的樣式?

示例: php

Html代碼   收藏代碼
  1. <class="example" data-pseudo="(i'm content.)">Hi, this is a plain-old, sad-looking paragraph tag.</p>  
  2. <div id="log"></div>  
  3.   
  4. <style>  
  5. .example::before {  
  6.     content: 'pseudoElement ';  
  7.     color: red;  
  8. }  
  9. </style>  



1、讀取,使用 window.getComputedStyle 方法: 

瀏覽器

Js代碼   收藏代碼
  1. <script>  
  2. var str = window.getComputedStyle(document.querySelector('.example'), '::before').getPropertyValue('color');  
  3.   
  4. document.querySelector('#log').innerHTML = str;  
  5.   
  6. </script>  



2、寫(修改)
 

沒有辦法。至少沒有直接的方法,退而次之,只能經過覆蓋樣式的途徑來達到咱們的目的。 
譬如:添加一個style元素,並寫入新的樣式;又或者是給目標元素添加不一樣的class,以達到控制的效果。 

示例: 

dom

Html代碼   收藏代碼
  1. <style id="pseudoStyle">  
  2. </style>  



Js代碼   收藏代碼
  1. <script>  
  2.     document.querySelector('#pseudoStyle').sheet.insertRule(".example::before { color: green;}",0);  
  3.     //或者是  
  4.     document.querySelector('#pseudoStyle').sheet.addRule('.example::before','color: green');  
  5.   
  6.     //setProperty在這時候,會拋異常:  
  7.     try{  
  8.         window.getComputedStyle(document.querySelector('.example'), '::before').setProperty('color',"green");  
  9.     }catch(e){  
  10.         document.querySelector('#log').innerHTML =  e;  
  11.     }  
  12. </script>  



僞類元素,有個屬性比較特殊:content。因爲它的值能夠定義爲從元素的dom屬性獲取,從而能夠實現js的直接讀寫。 
例如: 

this

Html代碼   收藏代碼
  1. <style>  
  2. .example::before {  
  3.     content: attr(data-pseudo);  
  4.     color: red;  
  5. }  
  6. </style>  



Js代碼   收藏代碼
  1. <script>  
  2.     document.querySelector('.example').setAttribute("data-pseudo","new content!");  
  3. </script>  



附錄: 
1. styleSheet對象的方法、屬性和瀏覽器兼容,參考:http://help.dottoro.com/ljpatulu.php 
2. getComputedStyle方法,參考:http://help.dottoro.com/ljscsoax.php , https://developer.mozilla.org/en/docs/Web/API/window.getComputedStylespa

相關文章
相關標籤/搜索