我对整个网络开发领域都很陌生,所以我所要求的可能是非常明显的。对于英语评估,我必须创建并托管一个特定文本的网页(在我的例子中,我选择了银河系的旅行者指南)。现在在评估中,概述了我们被允许使用来自其他网站的代码作为我们自己网站的模板,所以我强调,这不是我的代码。我从“http://dayzepoch.com/”获得了代码。到目前为止,我有占位符信息,并根据我的需求定制网页。目前,该网页位于“hPage”上的“http://hiimstring3.hpage.com/”。现在,我的页面加载得很好,但是当我点击其中一个链接时,它会在该页面上停留几秒钟,但随后会加载原始的DayZ Epoch网站。我认为这与下面的代码部分代码有关:
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="http://dayzepoch.com/#home"> Home </a></li>
<li class=""><a href="http://dayzepoch.com/#install" data-toggle="tab"> Characters </a></li>
<li class=""><a href="http://dayzepoch.com/#servers" data-toggle="tab"> Places </a></li>
<li class=""><a href="http://dayzepoch.com/#community_servers" data-toggle="tab"> Ships </a></li>
<li class=""><a href="http://dayzepoch.com/#teamspeak" data-toggle="tab"> About </a></li>
</ul>
现在,我不知道如何更改它,以便我的网站具有与原始网站相同的功能,但使用我的网址,而不是这些网址。如果有人可以帮助我,那我真的很感激。
- 迈克尔
答案 0 :(得分:1)
假设您是http://jqueryui.com/tabs/,那么您不会包含其他网站的网址。
它的格式应为
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#home"> Home </a></li>
<li class=""><a href="#install" data-toggle="tab"> Characters </a></li>
<li class=""><a href="#servers" data-toggle="tab"> Places </a></li>
<li class=""><a href="#community_servers" data-toggle="tab"> Ships </a></li>
<li class=""><a href="#teamspeak" data-toggle="tab"> About </a></li>
</ul>