How to load up CSS files using Javascript?

后端 未结 19 3837
栀梦
栀梦 2020-11-21 07:51

Is it possible to import css stylesheets into a html page using Javascript? If so, how can it be done?

P.S the javascript will be hosted on my site, but I want users

19条回答
  •  孤城傲影
    2020-11-21 08:14

    Here's a one line example, that uses plain JavaScript to inject a CSS link into the head element based on the filename portion of the URL:

    document.head.innerHTML += '';

    Most browsers support it. See the browser compatibility.

提交回复
热议问题