使菜单消失后,如果不列出特定的 html,我将无法显示我的内容。
这是HTML:
<div id="header">
<h1>N300 Project Gallery</h1>
</div>
<div id="container">
<div id="utility">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</div>
<div id="index-content">?</div>
<div id="footer">This is the footer</div>
</div>
这是我的脚本:
$(document).ready(function() {
$('#utility a').click(function(e){
e.preventDefault();
$('#utility').hide('normal',loadContent);
});
function loadContent() {
$('#index-content').load(url+ '#content')
}
});
这是我要移动的片段:
<div id="content">
<p>Hello! My name is Brittany Shephard.</p>
</div>