الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <!-- cloneTemplateContent() عند النقر على هذا الزر سيتم استدعاء الدالة <template> التي تقوم بإنشاء نسخة من المحتوى المجهز بداخل الوسم --> <button onclick="cloneTemplateContent()">Clone template content</button> <!-- هنا قمنا بتجهيز المحتوى الذي سيتم إنشاء نسخة منه عند النقر على الزر --> <template id="demo"> <h2>The Template Tag</h2> <p>The temaplte tag is used to render the content after the page is loading.</p> <hr> </template> <!-- التي تقوم بإظهار نسخة cloneTemplateContent() هنا قمنا بتعريف الدالة عندما يتم استدعاءها <template> من المحتوى الموضوع بداخل الوسم --> <script> function cloneTemplateContent() { if (document.createElement("template").content) { var temp = document.getElementById("demo"); var clon = temp.content.cloneNode(true); document.body.appendChild(clon); } else { alert("Oops.. Your browser doesn not supports the template tag!"); } } </script> </body> </html>