在这种情况下,我无法将元素状态设置为可见:
<html>
<head>
<style type="text/css">
#elem {display:none}
</style>
</head>
<body>
<div id="elem">.......</div>
<script type="text/javascript">
document.getElementById("elem").style.display="";
</script>
</body>
</html>
它仅在我将显示设置为“阻止”时才有效。
在这种情况下,它可以工作:
<html>
<head>
</head>
<body>
<div id="elem" style="display:none">.......</div>
<script type="text/javascript">
document.getElementById("elem").style.display="";
</script>
</body>
</html>
我的兴趣是让它在第一种情况下工作而不设置“块”。