الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JS Replace HTML Content</h1> <main> <p>This content will be replaced.</p> <p>This content will be replaced.</p> <p>This content will be replaced.</p> <p>This content will be replaced.</p> </main> <script> // mainElement في الصفحة في المتغير <main> هنا قمنا بتخزين أول وسم var mainElement = document.getElementsByTagName('main')[0]; // mainElement هنا قمنا بتبديل كل المحتوى الموجود في العنصر الذي يمثله المتغير mainElement.innerHTML = '<p>Content is totally replaced by <b>Javascript</b></p>'; </script> </body> </html>