外部 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 テスト結果