외부 js 파일을 html에 도입하고 js 파일에서 매개변수화된 함수 호출
1 프로젝트 구조
2 a.js, test.html 작성
//a.js function abc(str){ alert(str); } //test.html <html> <head> <script type="text/javascript" src="a.js"></script> <script type="text/javascript"> window.onload = function(){ var fun = abc; //引用abc函数 fun(123); }; </script> </head> <body> </body> </html>
3개 테스트 결과