블로그 이미지

calendar

1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
  • total
  • today
  • yesterday
2010. 1. 29. 11:35 JavaScript
jsText.html
  1. <html>  
  2.   <head>  
  3.     <script language="javascript" type="text/javascript" src="./a.js"></script>  
  4.   </head>  
  5.   <body>  
  6.     <button type="button" onclick="test1()">dfdfdf</button>  
  7.   </body>  
  8. </html>  
a.js
  1. document.write("<script type='text/javascript' src='b.js'><"+"/script>");  
  2. function test1(){  
  3.  //alert("dfdf");  
  4.  test2();  
  5. };  
b.js
  1. function test2(){  
  2.  alert("test2 실행됨");  
  3. }  
posted by 천상의날개