我正在尝试通过使用 java-script 函数来更改 CSS 属性,因此此代码在 firefox 中不起作用/适用于 Safari/Chrome
<html>
<head>
<style type="text/css">
#hide {
display: none ;
}
</style>
</head>
<body>
<div onmouseover="document.getElementById('hide').style.display = 'compact';" onmouseout="document.getElementById('hide').style.display = 'none';" >
Move Over Mouse here
</div>
<div id="hide"> THIS IS HIDDEN TEXT</div>
</body>
</html>
有任何想法吗 ?!