search

Home  >  Q&A  >  body text

建立好CSS、js文件夹后,如何在代码中引进?

例如这些文件名是reset.js/、common.css、index.css

我是灰太狼我是灰太狼2893 days ago1106

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:24:34

    After creating the CSS and js folders, how to introduce them into the code? -PHP Chinese website Q&A-After creating the CSS and js folders, how to introduce them into the code? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 怪我咯

    怪我咯2017-02-20 13:23:15

    使用link标签,具体方法如下

    <link rel="stylesheet" href=".../CSS/common.css" type="text/css" />

    <link rel="stylesheet" href=".../CSS/index.css" type="text/css" />

    <script type='text/javascript' src='.../js/reset.js'></script>


    reply
    0
  • Cancelreply