“Ustaw style CSS z JavaScript” Kod odpowiedzi

Jak nadać styl CSS w JavaScript

document.getElementById("myH1").style.color = "red";
linux.bug

Ustaw style CSS z JavaScript

var style = document.createElement('style');
  style.innerHTML = `
  #target {
  color: blueviolet;
  }
  `;
  document.head.appendChild(style);
Chaim Angel

Ustaw style CSS z JavaScript

var style = document.createElement('style');
  document.head.appendChild(style);
  style.sheet.insertRule('#target {color: darkseagreen}');
Chaim Angel

Ustaw style CSS z JavaScript

// Create our shared stylesheet:
const sheet = new CSSStyleSheet();
sheet.replaceSync('#target {color: darkseagreen}');

// Apply the stylesheet to a document:
document.adoptedStyleSheets = [sheet];
Chaim Angel

Ustaw style CSS z JavaScript

document.getElementById('target').style.color = 'tomato';
Chaim Angel

Odpowiedzi podobne do “Ustaw style CSS z JavaScript”

Pytania podobne do “Ustaw style CSS z JavaScript”

Więcej pokrewnych odpowiedzi na “Ustaw style CSS z JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu