“JQuery Dodaj CSS” Kod odpowiedzi

JQuery Dodaj CSS

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

Edytuj CSS JQuery

$('.ama').css('color','red');
Clumsy Constrictor

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

Dodaj plik CSS za pośrednictwem JQuery

$('head').append('<link rel="stylesheet" href="style2.css" type="text/css" />');
Clear Cheetah

Odpowiedzi podobne do “JQuery Dodaj CSS”

Pytania podobne do “JQuery Dodaj CSS”

Więcej pokrewnych odpowiedzi na “JQuery Dodaj CSS” w CSS

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

Przeglądaj inne języki kodu