在另一个博客上找到了一个新的方法,也可以实现这个功能哦
通过摸索自己总结出另一个方法,和这个有着异曲同工之妙。
在你的主题模板页的default.html中找到如下代码:
<div class="function" id="divArchives">
<h3><#ZC_MSG028#></h3>
<ul><#CACHE_INCLUDE_ARCHIVES#></ul>
</div>
将其替换成为:
<div class="function" id="divArchives" onmouseover="document.getElementById('ulArchives').style.display = 'block';document.getElementById('ulArchives2').style.display = 'none';" onmouseout="document.getElementById('ulArchives').style.display = 'none';document.getElementById('ulArchives2').style.display = 'block';">
<h3><#ZC_MSG028#></h3>
<ul style="display: none;" id="ulArchives">
<#CACHE_INCLUDE_ARCHIVES#>
</ul>
<ul id="ulArchives2">
<li>按月查看</li>
</ul>
</div>
本文链接地址:http://www.find321.cn/post/155.html
原创文章如转载请注明:转载自发现博客 http://www.find321.cn/ |