javascript獲取偽物件before和after定義的內容

antzone發表於2017-04-11

關於上述兩個偽物件選擇器的基本用法可以參閱以下兩篇文章:

(1).::before選擇器可以參閱CSS E:before/E::before一章節。

(2).::after選擇器可以參閱CSS E:after/E::after一章節。

下面就通過程式碼例項介紹一下如何,獲取使用偽類選擇器定義的相關屬性值。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#antzone:before {
  content: "螞蟻部落";
  color: green;
}
</style>
<script>
window.onload = function () {
  var odiv=document.getElementById("antzone");
  var oshow=document.getElementById("show");
  var color=getComputedStyle(document.querySelector("#antzone"),":before").getPropertyValue('color')
  oshow.innerHTML=color;
}
</script>
</head>
<body>
<div id="show"></div>
<div id="antzone"></div>
</body>
</html>

相關文章