Javascript 如何跳转网页而不删除网站的其余部分?

Javascript 如何跳转网页而不删除网站的其余部分?,javascript,css,html,aptana,Javascript,Css,Html,Aptana,这是我的网站: 点击侧栏万维网,我只想让它向下滚动或跳转到该Div(万维网定义)页面,但它会删除除该Div之外的页面其余部分。为什么 这是我的网站代码: <div id="wrapper"> <header id="name" align="center">IS117 TERMS</header> <div id="primary_links" align="center">

这是我的网站: 点击侧栏万维网,我只想让它向下滚动或跳转到该Div(万维网定义)页面,但它会删除除该Div之外的页面其余部分。为什么

这是我的网站代码:

          <div id="wrapper">
        <header id="name" align="center">IS117 TERMS</header>
         <div id="primary_links" align="center">
            <ul>
                <li><a href="website.html">Home</a></li>
                <li><a href="CSS.html">CSS</a></li>
                <li><a href="HTML.html">HTML</a></li>
                <li><a href="Org.html">Organizations</a></li>
                <li><a href="Tech.html">Technologies</a></li>

            </ul>
        </div>

            <div id="content">
                <h1>Organizations</h1>

        <div> 
            Client- the computers and devices that use web applications
        </div> 
        <div> 
            Internet exchange point-a point in the world that connect many WAN’s 
        </div> 
        <div> 
            Internet- global system of interconnected networks
        </div> 
        <div> 
        Internet service provider- Someone or company who owns a WAN and leases its access to their network
        </div> 
        <div> 
            Intranet- network where only employees can run web applications typically they are in the same area
        </div> 
       <div> 
            Local area network- a small network of computers that are near each other and communicate over short distances
        </div> 
        <div> 
            Network-a system that allows clients and servers to communicate
        </div> 
        <div> 
            W3C-world wide web consortium, group that develops standards, for code
        </div> 
        <div> 
            Web browser-programs that access web pages
        </div> 
        <div> 
            Web server- holds the files that make up a web application
        </div> 

        <div> 
            WHATWG-community of people interested in evolving html, big source of info
        </div> 
        <div> 
            Wide area network-2 or more LAN’s connected by a router
        </div> 
        <div id="zz">
            World Wide Web- components that bring together a web page to your desktop over the internet
        </div>



        </div> <!-- content -->


    <div id="sidebar">
    <div id="secondary_links">
        <ul>
            <li><a href="#">Client</a></li>
            <li><a href="#">Internet Exchange Point</a></li>
            <li><a href="#">Internet</a></li>
            <li><a href="#">Internet Service Provide</a></li>
            <li><a href="#">Intranet</a></li>
            <li><a href="#">Local Area Network</a></li>
            <li><a href="#">Network</a></li>
            <li><a href="#">W3C</a></li>
            <li><a href="#">Web Browser</a></li>
            <li><a href="#">Web Server</a></li>
            <li><a href="#">WHATWG</a></li>
            <li><a href="#">Wide Area Network</a></li>
            <li><a href="#zz">World Wide Web</a></li>               
        </ul>
        </div>
       </div>
        </div>

IS117条款
组织机构 客户端-使用web应用程序的计算机和设备 Internet交换点—世界上连接多个WAN的点 互联网-全球互联网络系统 互联网服务提供商-拥有广域网并租用其网络访问权的个人或公司 Intranet—只有员工才能运行web应用程序的网络,通常他们位于同一区域 局域网-一个小型计算机网络,彼此靠近,短距离通信 网络—允许客户端和服务器通信的系统 W3C万维网联盟,为代码开发标准的组织 访问网页的Web浏览器程序 Web服务器—保存构成Web应用程序的文件 WHATWG社区的人们对不断发展的html感兴趣,这是一个巨大的信息来源 广域网—由路由器连接的2个或多个LAN 万维网-通过internet将网页连接到桌面的组件

那页上有很多时髦的东西。我建议从验证HTML开始。您可以在这里验证它-不必担心“X-UA-Compatible”错误,但您肯定应该修复其他错误,然后从那里开始