“JS menghapus properti CSS tertentu” Kode Jawaban

JS menghapus properti CSS tertentu

// OPTION 1:

el.style.removeProperty('zoom');

// OPTION 2:

el.style.zoom = "";
Evergreen Tomato

Hapus jQuery CSS

$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
//You can remove css by the above.
CodeHelper

Jawaban yang mirip dengan “JS menghapus properti CSS tertentu”

Pertanyaan yang mirip dengan “JS menghapus properti CSS tertentu”

Lebih banyak jawaban terkait untuk “JS menghapus properti CSS tertentu” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya