@clifford Используйте .removeClass() метод без параметров или .removeAttr('class') метод в jQuery чтобы удалить все классы у любого элемента в jQuery, ниже пример кода как пример:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<html> <head> <meta charset="utf-8"/> <script src="https://code.jquery.com/jquery-2.2.4.js"></script> </head> <body> <div> <p class="green-text text-center another-class"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p> <button class="remove-classes">Удалить все классы</button> </div> </body> <script> $('body').on('click', '.remove-classes', () => { $("p").removeClass(); // Или // $("p").removeAttr('class'); }); </script> </html> |
@clifford
Вы можете использовать следующий код, чтобы удалить все классы у элемента в jQuery:
1
|
$(element).removeClass(); |
element
- это элемент, у которого вы хотите удалить все классы.