“JavaScript добавить файл css” Ответ

JavaScript CSS Link Приложение

document.getElementsByTagName("head")[0].insertAdjacentHTML(
    "beforeend",
    "<link rel=\"stylesheet\" href=\"path/to/style.css\" />");
Mobile Star

JavaScript добавить файл css

var cssFile = document.createElement('link');
    cssFile.rel = 'stylesheet';
    cssFile.href = "styles.css";  // or path for file {themes('/styles/mobile.css')}
    document.head.appendChild(cssFile); // append css to head element
Healthy Hamster

Таблица стиля ссылки в JavaScript

var cssId = 'myCss';  // you could encode the css path itself to generate id..
if (!document.getElementById(cssId))
{
    var head  = document.getElementsByTagName('head')[0];
    var link  = document.createElement('link');
    link.id   = cssId;
    link.rel  = 'stylesheet';
    link.type = 'text/css';
    link.href = 'http://website.com/css/stylesheet.css';
    link.media = 'all';
    head.appendChild(link);
}
Grotesque Gaur

Добавить файл CSS с помощью JavaScript

var cssFile = document.createElement('link');
    cssLink1.rel = 'stylesheet';
    cssLink1.href = "styles.css";  // or path for file {themes('/styles/mobile.css')}
    document.head.appendChild(cssFile); // append css to head element
Batman

Ответы похожие на “JavaScript добавить файл css”

Вопросы похожие на “JavaScript добавить файл css”

Больше похожих ответов на “JavaScript добавить файл css” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования