“Fügen Sie Klasse JQuery hinzu” Code-Antworten

JQuery Class hinzufügen

if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}
Matteoweb

JQuery Class hinzufügen

$('some_element').addClass('some-class');

// You can add more than one class at one time
$('some_element').addClass('some-class another-class yet-another-class');

// Even thought jQuery allows you to do this
$('some_element').addClass('some-class').addClass('another-class').addClass('yet-another-class');

// That would be really wasteful, think of the planet!
// But more importantly, your RAM
// oh and those poor folks who be viewing your website
Kaotik

JQuery AddClass

$( "p" ).removeClass( "myClass noClass" ).addClass( "yourClass" );
Puzzled Peacock

AddClass jQuery

$( "p" ).addClass( "myClass yourClass" );

Fügen Sie Klasse JQuery hinzu

$("#my_id").attr("class", "my_new_class_name");
Poseidon

Ähnliche Antworten wie “Fügen Sie Klasse JQuery hinzu”

Fragen ähnlich wie “Fügen Sie Klasse JQuery hinzu”

Weitere verwandte Antworten zu “Fügen Sie Klasse JQuery hinzu” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen