求助,
我是网页制作业余爱好者,不懂网页的脚本编程,想实现以下效果:有两个网页地址:a.htm  和 b.htm
目的:我在a.htm的某一个链接上点击后弹出一个div层,层里面显示的是b.htm里面的正文内容;
当然b.htm除了正文外还有其他的网页元素,但那些都不在显示的范围之中,而b.htm里的大概结构为:
<div class="main">
   <div class="其他">
     其他
   </div>   <div id="content">
       正文内容...
   </div>   <div class="其他">
     其他
   </div>
</div>也就是说,我需要在a.htm弹出的层里面显示b.htm中id为content中的内容!
最好有实例!恳请侠客帮助,谢谢!!!

解决方案 »

  1.   

    <html>
    <head>
      <title></title>
      <meta http-equiv="Content-Type" content="text/html;charset=gb2312">
    </head>
    <frameset rows="64,*" frameborder="NO" border="0" framespacing="0">
     <frame src="admin_top.html" noresize="noresize" frameborder="NO" name="topFrame" scrolling="no" marginwidth="0" marginheight="0" target="main" />
      <frameset cols="200,*" rows="560,*" id="frame">
     <frame src="left.aspx" name="leftFrame" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" target="main" />
     <frame src="right.html" name="main" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" target="_self" />
      </frameset>
    <noframes>
      <body></body>
      </noframes>
    </html>