我有这个标记:
<div class="container" id="logo" style="text-align:center;">
//other loading stuff
<a href="" id="enter" onclick="EnterSite()">Enter Website</a>
</div>
<div id="content">
//main content
</div>
在结束标记 之前的顶部,我有:head
<script>
$(function() {
$('#enter').hide();
});
$(window).load(function() {
$('#enter').show();
});
</script>
在底部我有(在结束body
标签之前):
function EnterSite() {
$("#enter").click(function(){
$("#content").show(2000);
});
}
和 CSS:
#logo {
z-index: 99;
}
#content {
display: none;
}
但它只显示logo
div 并单击Enter Website
链接什么也不做。
我想要做的是显示logo
div 直到页面加载(window.load)并隐藏输入网站链接。加载页面后,显示链接,单击该链接将显示content
div