Maison > interface Web > tutoriel CSS > le corps du texte

Comment puis-je ajouter dynamiquement des feuilles de style à l'en-tête à l'aide de JavaScript ?

Susan Sarandon
Libérer: 2024-11-15 13:49:03
original
991 Les gens l'ont consulté

How Can I Add Stylesheets Dynamically to the Head Using JavaScript?

Adding Stylesheets Dynamically to the Head Using JavaScript

Many Content Management Systems (CMSs) restrict access to the head section, making it challenging to incorporate additional stylesheets. However, a clever solution using JavaScript can effectively tackle this issue.

To inject stylesheets into the head section after the tag, we can leverage JavaScript's ability to manipulate the Document Object Model (DOM). The following code snippet demonstrates this technique:

function addCss(fileName) {
  var head = document.head;
  var link = document.createElement("link");

  link.type = "text/css";
  link.rel = "stylesheet";
  link.href = fileName;

  head.appendChild(link);
}
Copier après la connexion

For a simpler solution using jQuery, consider the following:

function addCss(fileName) {
  var link = $("<link />", {
    rel: "stylesheet",
    type: "text/css",
    href: fileName
  });
  $('head').append(link);
}
Copier après la connexion

Note: Recent specifications prohibit the use of the element in the tag. However, most browsers still render it correctly. Therefore, adding the stylesheet to the tag is technically feasible, although adhering to specifications dictates placing it in the tag instead.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal