动态插入css

function loadStyle(url) {
  const link = document.createElement('link');
  link.type = 'text/css';
  link.rel = 'stylesheet';
  link.href = url;
  const head = document.getElementsByTagName('head')[0];
  head.appendChild(link);
};

  

posted @ 2020-04-16 14:40  neo_o  阅读(370)  评论(0编辑  收藏  举报

愿你的生活只有诗和远方