一,问题

  平时使用WebStorm时需要很多引用js,重复代码比较多,每次都要写很多次同样的代码,那么如何通过几个快捷键来简单的写出重复代码呢?

  问题具体描述:

  每次都要写两个script的重复:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <script src="jquery.js"></script>
    <script>
        $(function () {

        })
    </script>
    
</head>
<body>

</body>
</html>

  

二,解决方法

  

相关文章:

  • 2021-06-18
  • 2022-02-10
  • 2021-12-21
  • 2021-06-26
  • 2021-12-29
猜你喜欢
  • 2021-08-27
  • 2022-01-03
  • 2021-05-07
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
相关资源
相似解决方案