“Таблица стиля ссылки в JavaScript” Ответ

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

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

Таблица стиля ссылки в 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”

Вопросы похожие на “Таблица стиля ссылки в JavaScript”

Больше похожих ответов на “Таблица стиля ссылки в JavaScript” по JavaScript

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

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