我只会一点儿VB,可是要操作的网页是JAVA的,只好来此问问各位大蛱:
我单位内部网页,与外网关闭,是用JAVA编写的,我试着找超级链接进行操作,可是找不到,找着的全是带JAVA字符的超级链接,想把图片一起发上来,可是不知图片怎么发,只好发几个源代吗:
网页源代码:(部分)
<script language="javascript">    这句应该是说使用的是java语言吧??? <frame name="left" scrolling="NO" noresize src=""/>
   <frameset rows="74,*,23" frameborder="NO" border="0" framespacing="0">
        <frame name="rootmenu" scrolling="NO" noresize src="/webroot/dbsy/rootmenu.do"/>
这是说的执行什么语句吧,后面的应该是子窗口的设置
  <frameset id="Child" cols="182,9,*" frameborder="NO" border="0" framespacing="0" rows="*">
    <frame name="childmenu" frameborder="NO" border="0" framespacing="0" scrolling="no" noresize src="/webroot/dbsy/childmenu.do"/>
    <frame name="menubar" frameborder="NO" border="0" framespacing="0" scrolling="no" noresize src="menu/MenuBar.jsp"/>
           <frame name="pagearea" frameborder="NO" border="0" framespacing="0" scrolling="yes" noresize src="/webroot/dbsy/viewpage.do"/>
       </frameset>
  <frame  name="bottom" scrolling="NO" noresize src="menu/Bottom.jsp"/>
</frameset>
<frame name="right" scrolling="NO" noresize src=""/>部分我找的超级链接:http://pt.ds.hb/hb/sunfast/Js_Main?p_login=1&p_winId=20070913085505chenlin3后面的代码什么意思?还有一链接上图片和文字都有,查找链接反映是二个:
  文字A... http://zg.ds.hb/webroot/enterapp.do?name=/dbsy&welcome=/webroot/dbsy/pages/index.jsp
  图片IMG... http://zg.ds.hb/webroot/unieap/images/newImg/dbsy.gif2  A... http://zg.ds.hb/webroot/enterapp.do?
大家说下,这又上什么意思?

解决方案 »

  1.   

    <script language="javascript">    定义了javascript脚本语言 <frame name="left" scrolling="NO" noresize src=""/> 
      <frameset rows="74,*,23" frameborder="NO" border="0" framespacing="0"> 
            <frame name="rootmenu" scrolling="NO" noresize src="/webroot/dbsy/rootmenu.do"/> 
    这里用的可能是strutsMVC,比如/webroot/dbsy/rootmenu.do,将会跳转到/webroot/dbsy/rootmenu.jsp,这个frame显示的将会是/webroot/dbsy/rootmenu.jsp中的内容(注意路径使用)
      <frameset id="Child" cols="182,9,*" frameborder="NO" border="0" framespacing="0" rows="*"> 
        <frame name="childmenu" frameborder="NO" border="0" framespacing="0" scrolling="no" noresize src="/webroot/dbsy/childmenu.do"/> 
        <frame name="menubar" frameborder="NO" border="0" framespacing="0" scrolling="no" noresize src="menu/MenuBar.jsp"/> 
              <frame name="pagearea" frameborder="NO" border="0" framespacing="0" scrolling="yes" noresize src="/webroot/dbsy/viewpage.do"/> 
          </frameset> 
      <frame  name="bottom" scrolling="NO" noresize src="menu/Bottom.jsp"/> 
    </frameset> 
    <frame name="right" scrolling="NO" noresize src=""/> 
    部分我找的超级链接:http://pt.ds.hb/hb/sunfast/Js_Main?p_login=1&p_winId=20070913085505chenlin3将会把p_login、p_winId等一些列参数传给url=/sunfast/Js_Main的servlet类进行处理文字A... http://zg.ds.hb/webroot/enterapp.do?name=/dbsy&welcome=/webroot/dbsy/pages/index.jsp 这里用的可能是strutsMVC,点击文字A后,把name,welcome等一系列参数传给符合webroot/enterapp.do的action处理,后者forward下一个页面位置
    图片IMG... 链接原理同上