替換1:使用jQuery標籤: 在這裏看到的演示和代碼:http://jqueryui.com/demos/tabs/
替換2:隱藏/在同一個HTML文件顯示DIV:
HTML:
<div id="nav">
<a href="#content1">Show content 1</a>
<a href="#content2">Show content 2</a>
<a href="#content3">Show content 3</a>
</div>
<div id="content1" class="toggle" style="display:none">show the stuff1</div>
<div id="content2" class="toggle" style="display:none">show the stuff2</div>
<div id="content3" class="toggle" style="display:none">show the stuff3</div>
jQuery的:
$("#nav a").click(function(e){
e.preventDefault();
$(".toggle").hide();
var toShow = $(this).attr('href');
$(toShow).show();
});
演示:http://jsfiddle.net/5NEu3/3/
Alt鍵3:負載從服務器按需:
HTML加載到你的主DIV你應該使用:http://api.jquery.com/load/ 按照該網站上的例子。並且請注意,您正在加載的html端必須與您承載新頁面的域相同。
的Html
<a href="http:www.test.com/test1.html">Show content 1</a>
<a href="http:www.test.com/test2.html">Show content 2</a>
jQuery的
$("#nav a").click(function(e){
e.preventDefault();
$('#maindiv').load($(this).attr("href"));
});
你的問題有點混亂,你想鏈接顯示一個隱藏的div?或有鏈接追加到div的東西?或者是其他東西? – Gordnfreeman
我想,你需要使用AJAX。 – Dev
聽起來像你準備跳入JavaScript的美妙世界。嘗試閱讀一下,併發布一些你嘗試過的東西。此頁面可能是一個很好的開始,並可讓您中途回答您的問題:[http://www.webdesignfromscratch.com/javascript/js101/](http://www.webdesignfromscratch.com/javascript/js101/) – Dave