左边导航栏 右边内容 用js javascript 实现
js代码
------------------------------------------------------
说明:当执行showContent时,在id为right_content的ifame框架中显示该url所指向的html或者jsp文件
<script type="text/javascript">function showConent(url) {var p = document.getElementById("right_content");p.src=url;}</script> <div id="left_part"><span>用户管理</span><a href="javascript:void(0);" onmousedown="showConent('sf.html')">修改信息</a></div> <div id="right_part"><iframe src="" id="right_content" scrolling="no"></iframe></div>