“jQuery добавить класс” Ответ

jQuery добавить класс

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

jQuery добавить класс

$('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" );

Добавить класс jQuery

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

Ответы похожие на “jQuery добавить класс”

Вопросы похожие на “jQuery добавить класс”

Больше похожих ответов на “jQuery добавить класс” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования