【发布时间】:2011-08-09 06:51:14
【问题描述】:
我有一些代码在我的网站主页的容器 div 和它周围的相框中淡出,但我不希望它再次显示这种效果,即使在随后的页面重新加载时,甚至当主页链接被点击。我该怎么办?这是我目前拥有的代码:
<script type="text/javascript" src="jquerys.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("img.frame").hide(0,function(){
$("div.container").hide(0,function(){
$("img.frame").fadeIn(1000);
$("div.container").fadeIn(1000);
});
});
});
</script>
感谢您的帮助!
【问题讨论】:
标签: jquery