<html>
<style type="text/css">
a {
display: none;
}
</style>
<body>
<p id="p"> a paragraph </p>
<a href="http://www.google.com" id="a">google</a>
</body>
<script type="text/javascript">
var a = (document.getElementById('a')).style;
alert(a.display);
var p = (document.getElementById('p')).style;
alert(p.display);
p.display = 'none';
alert(p.display);
</script>
</html>
第一个和第二个只alert
显示一个空字符串,我认为应该是none
and block
。然而经过刻意的display
设定,第三个人alert
终于警觉起来none
。
但为什么?我怎样才能display
正确检索财产?
谢谢。