“Dodaj styl do arkusza stylów za pośrednictwem JQuery” Kod odpowiedzi

Jak ustawić styl CSS za pomocą jQuery

$('#element').css('display', 'block'); /* Single style */
$('#element').css({'display': 'block', 'background-color' : '#2ECC40'}); /* Multiple style */ 
Cute Crayfish

Dodaj styl do arkusza stylów za pośrednictwem JQuery

var sheets = document.styleSheets;
$.each(sheets, (index) => {
	let url = sheets[index].href;
	if (url == "sheet url") {
       let thisSheet = sheets[index];
       //add css hover styling to stylesheet
       thisSheet.insertRule('selector {color: black !important;}');
     }
})
kristoff jenkins

Odpowiedzi podobne do “Dodaj styl do arkusza stylów za pośrednictwem JQuery”

Pytania podobne do “Dodaj styl do arkusza stylów za pośrednictwem JQuery”

Więcej pokrewnych odpowiedzi na “Dodaj styl do arkusza stylów za pośrednictwem JQuery” w JavaScript

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

Przeglądaj inne języki kodu