我在這裏有一個相對簡單的問題。最簡單的方法來按按鈕點擊加載DIV?
我需要的是這個;我需要有一個頁面,頂部有5個按鈕,下面有一個DIV(最初隱藏)。當點擊一個按鈕時,它將內容加載到DIV中(以另一個DIV的形式)
例如。
[Button 1] [Button 2] [Button 3] [Button 4] [Button 5] //5 buttons or links
<div id="content">
// area for content to be loaded
</div>
<div id="content1">
//could be a table or image
</div>
<div id="content2">
//could be a table or image
</div>
<div id="content3">
//could be a table or image
</div>
<div id="content4">
//could be a table or image
</div>
<div id="content5">
//could be a table or image
</div>
在上面的例子中,當用戶加載頁面時,他們看到5個按鈕。如果他們按下按鈕5,則會在「content」DIV內加載「content5」DIV,例如。
<div id="content">
<div id="content5">
</div>
</div>
如果選擇了另一個按鈕,它會加載它的內容。
可以用jQuery或簡單的JavaScript來實現。
非常感謝
您是否希望以前按鈕點擊的內容保留在#內容中? – ocodo 2011-02-03 07:14:11