02.external_js.html 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <html> <head> <script type="text/javascript" src="xxx.js"></script> <script type="text/javascript"> function message(){ alert("This alert box was called with the onload event"); } </script> </head> <body onload="message()"> </script> </body> </html>