Показать сообщение отдельно
  #5 (permalink)  
Старый 15.09.2008, 11:34
zxc
 
Сообщений: n/a

Файл index.jsp
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
  <body >
      <IFRAME 
	    SRC="frame1.jsp" name="frame1" WIDTH="70%" HEIGHT="820" ALIGN="left">	  
      </IFRAME>
      
      <IFRAME
	    SRC="frame2.jsp" name="frame2" WIDTH="30%" HEIGHT="820" ALIGN="right">
	</IFRAME> 
  </body>
</html>


Файл frame1.jsp
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>  
    <script type="text/javascript" src="frame1.js"></script>
    <body>
    </body>
</html>


Файл frame1.js
/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function zxc(x,y)
{
    var z = x+y;
    return z;
}


Файл frame2.jsp
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
      <script type="text/javascript" src="frame2.js"></script>
    <body>
    </body>
</html>

Файл frame2.js
document.onmousedown = mousedown;

function mousedown() 
{ 
   var t = zxc(2, 6);
   alert(t);
 
}
Ответить с цитированием