2010. 1. 29. 11:35
JavaScript
jsText.html
a.js
b.js
- <html>
- <head>
- <script language="javascript" type="text/javascript" src="./a.js"></script>
- </head>
- <body>
- <button type="button" onclick="test1()">dfdfdf</button>
- </body>
- </html>
- document.write("<script type='text/javascript' src='b.js'><"+"/script>");
- function test1(){
- //alert("dfdf");
- test2();
- };
- function test2(){
- alert("test2 실행됨");
- }
'JavaScript' 카테고리의 다른 글
popup post로 넘기기 (0) | 2010.01.29 |
---|---|
form 엑션으로 가기전 체크 가능한것 onSubmit(); (0) | 2010.01.29 |
오른쪽 마우스 금지(익스플로러,네스케이프)동시 (0) | 2010.01.29 |
자바 스크립트로 String 단어하나와 단어 사이글짜 없에기 (0) | 2010.01.29 |
자바스크립트로 프린터하기(팝업창띄워서 페이지를 만듬) (0) | 2010.01.29 |