<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>js</title> </head> <body> <!--js一般放在body最底端,防止js加载不出来时页面卡住--> <!--引用外部js--> <script src="js/common.js"></script> <!--html页面内部定义js--> <script type="text/javascript"> alert('ha') </script> </body> </html>
关注我的公众号,不定期推送资讯
本文来自博客园,作者:链条君,转载请注明原文链接:https://www.cnblogs.com/MacoLee/p/5888710.html