今天经理让我做实现一个功能,我现在有一张装置图,我想点击装置图纸中的一个装置,然后让他跳转到另一张装置图纸.请问怎么实现呀???

解决方案 »

  1.   

    可以用HTML实现方法实现
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title></title>
    </head>
    <body>
    <table>
    <tr><td align="center" >
    <img   src='${REQUEST.contextPath}/module/stdpandect/img/stdpandect.jpg' border=0 usemap="#Map"><map name="Map" id="Map"><area shape="rect" coords="76,80,300,125" href="#" onclick="new stdpandect.PlanningWin().createWindow();return false;"/>
    <area shape="rect" coords="345,81,569,124" href="#" onclick="new stdpandect.ProWin().createWindow();return false;" />
    </td></tr>
    </body>
    </html>
      

  2.   

    楼上正解
    为了比较好的动态效果可以使用FLEX来做!
      

  3.   

    看你是用那种语言实现,
    如果是HTML  上面他们的是对的 ,