0
我需要通過使用js來知道類的內容。 例如: -使用js訪問類的內容
<p style='visibility:hidden'>hello !</p>
如果我們寫
alert(document.getElementsByTagName('P')[0].style.visibility)
它會回報"hidden"
,但如果我們寫
<p class='peter'>hello !</p>
<style>.peter{visibility:hidden}</style>
它會回報""
。 !!!!
可能重複[獲取所有元素的計算樣式](http://stackoverflow.com/questions/8625855/get-all-computed-style-of-an-element) – NineBerry