“Agregar archivo CSS con JavaScript” Código de respuesta

El enlace de JavaScript CSS agregar

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

JavaScript Agregar archivo 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

Agregar archivo CSS con 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

Respuestas similares a “Agregar archivo CSS con JavaScript”

Preguntas similares a “Agregar archivo CSS con JavaScript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código