我想从 HTML 元素中获取显示属性。当我编写内联 CSS 时,它可以工作,但如果我使用一个类,它就不行。
这有效:
<p id="p1" style="display:none;">This is some text.</p>
<script>alert(document.getElementById("p1").style.display);</script>
这不起作用:
<style>.deneme{ display: none; }</style>
<p id="p1" class="deneme">This is some text.</p>
<script>alert(document.getElementById("p1").style.display);</script>
为什么?是否有可能使第二种情况的行为与第一种情况一样?我该如何解决?