الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .highlight { background: lightskyblue; padding: 10px; } .danger { background: lightpink; padding: 10px; } </style> </head> <body> <h1>JS Set Class Value For Element</h1> <p>You can use the "classList.className" property to set the class value for the element.</p> <p id="demo" class="highlight">the highlight class is removed from me. Now, I am using the danger class.</p> <script> // element في متغير إسمه demo يساوي id هنا قمنا بتخزين العنصر الذي يملك var element = document.getElementById('demo'); // فقط danger يستخدم الكلاس element هنا قمنا بجعل العنصر الذي يمثله المتغير element.className = 'danger'; </script> </body> </html>