`,
`
`,
`
`
];
// الحصول على المؤشر من localStorage أو تعيينه إلى 0 إذا لم يكن موجودًا
let adIndex = parseInt(localStorage.getItem('adIndex')) || 0;
// تحديد الإعلان بناءً على المؤشر
const selectedAdHTML = ads[adIndex];
// تحديث المؤشر للدورة التالية
adIndex = (adIndex + 1) % ads.length;
localStorage.setItem('adIndex', adIndex);
// إنشاء عنصر وإدراج الإعلان
const adContainer = document.createElement('div');
adContainer.id = 'ad-container';
adContainer.innerHTML = selectedAdHTML;
document.body.appendChild(adContainer);
// تشغيل AdSense للإعلان المختار
(adsbygoogle = window.adsbygoogle || []).push({});
});
التسجيل في المساعدات النقدية
طلب التسجيل في المساعدات النقدية
طلب التسجيل في المساعدات النقدية