有一个页面index.jsp,该页面中有一个div层如下:
<div id="openDiv">打开b.jsp</div>
使用showModalDialog()从index.jsp页面打开b.jsp页面,
b.jsp页面有一个链接,链接到c.jsp页面,如下:
<a href="c.jsp">打开c.jsp</a>
现在要求单击"打开c.jsp"链接后只显示一个模态窗口,该窗口中显示c.jsp页面中的内容,如何实现?