0
每當我使用這種類型的JavaScript代碼來欣賞元素的背景顏色時,它總是返回「」。如何從JavaScript的外部樣式表派生元素樣式?
<style><!--From external stylesheet-->
#divexample{
background-color:#4345C7;
}
</style>
<div id="divexample"></div>
<script type="text/javascript">
var bgColor=document.getElementById("divexample").style.backgroundColor;
alert(bgColor);
</script>
前加載你的風格JS? – Shomz 2014-09-28 00:44:49
檢查[MSDN](https://developer.mozilla.org/en/docs/Web/API/window.getComputedStyle)。 – 2014-09-28 00:50:50