MacoLee

 

<!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>

 

分类:

技术点:

相关文章:

  • 2021-10-23
  • 2021-11-22
  • 2021-08-01
  • 2021-06-07
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-23
  • 2021-10-10
  • 2022-12-23
  • 2021-09-11
相关资源
相似解决方案