Can I load javascript code using <link> tag?

前端 未结 8 1509
情歌与酒
情歌与酒 2020-12-02 20:20

Can I load javascript code using tag in my website ?

For example I have a javascript file, test.js, which contains the simple

8条回答
  •  借酒劲吻你
    2020-12-02 20:58

    No. A Link tag like is for CSS files or for relational links (like next).

    This is not the way to load javascript into the page. You need to use the

提交回复
热议问题