如果你組織你的右側的內容與一個包含分區,且該分區中作出這樣握着你的常規內容和一個iframe嵌套式div;然後你可以設置單擊處理你的鏈接,將隱藏div嵌套,並顯示在iframe:
$(document).ready(function() {
$('#inner_div > a').live('click', function() {
$('#inner_div').slideUp();//just an example animation, you can set whatever attributes you would like with jquery, like just change the height with .css({height: '0px'})
$('#iframe_id').slideDown();
});
});
<div id="outer_div">
<div id="inner_div">
<a href="some_link.html" target="iframe_id">Link Text</a>
</div>
<iframe id="iframe_id" style="display:none;"></iframe>
</div>
---- ----編輯
至於附着於底部的浮動欄頁:
<div id="floating_footer" style="position: absolute; bottom: 0px; right: 0px; width: 90%; height: 50px; background-color:#069;"></div>
如果你想隱藏這個「浮動DIV」當iframe中顯示出來,只需添加下面的JavaScript代碼(右與其他效果基本show /了slideDown代碼):
$('#floating_footer').slideUp();
謝謝..這是像魅力工作.. 那麼在底部的浮動吧..? 任何建議 – Sandeep
像我上面的例子,在頁面的主體中添加絕對定位的div。 – Jasper