我发现了这个漂亮的代码:
<div style="width: 80px; height: 20px; background-color: red;"
onmouseover="document.getElementById('div1').style.display = 'block';">
<div id="div1" style="display: none;" onmouseout="document.getElementById('div1').style.display = 'none';"> Text</div>
</div>
我一直在尝试使用在 Tumblr 上显示/隐藏预先确定的 div 的 div,但我可能使用错了,这会工作还是我必须使用其他代码?