الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JS BOM</h1> <p>The document object can be accessed through the window object.</p> <script> // الأمر التالي يعرض مسار الصفحة المفتوحة حالياً document.write(window.document.location); </script> </body> </html>