เรียนรู้วิธีการรวมตัวอย่าง HTML ใน HTML
ใช้ HTML
บันทึก HTML ที่คุณต้องการรวมไว้ในไฟล์ .html:
content.html
<a href="http://www.w3ii.com/html/default.html">HTML</a><br>
<a
href="http://www.w3ii.com/css/">CSS</a><br>
<a
href="http://www.w3ii.com/bootstrap/">Bootstrap</a><br>
<a
href="http://www.w3ii.com/js/">JavaScript</a><br>
<a
href="http://www.w3ii.com/sql/">SQL</a><br>
<a
href="http://www.w3ii.com/php/default.html">PHP</a><br>
<a
href="http://www.w3ii.com/w3css/default.html">W3.CSS</a><br>
รวม HTML
รวมทั้ง HTML จะทำได้โดยใช้ W3- ได้แก่ -HTML แอตทริบิวต์:
ตัวอย่าง
<div w3-include-html ="content.html"></div>
เพิ่ม JavaScript
HTML รวมถึงจะทำโดยใช้ JavaScript
ตรวจสอบให้แน่ใจหน้าเว็บของคุณได้ w3data.js โหลดและเรียก w3IncludeHTML ():
ตัวอย่าง
<script>
w3IncludeHTML();
</script>
ตัวอย่างเต็มรูปแบบ
ตัวอย่าง
<!DOCTYPE html>
<html>
<script src="http://www.w3ii.com/lib/w3data.js"></script>
<body>
<div w3-include-html="content.html"></div>
<script>
w3IncludeHTML();
</script>
</body>
</html>
ลองตัวเอง» รวมถึงตัวอย่าง HTML หลายคน
คุณสามารถรวมจำนวนตัวอย่าง HTML ใด ๆ
ตัวอย่าง
<!DOCTYPE html>
<html>
<script src="http://www.w3ii.com/lib/w3data.js"></script>
<body>
<div
w3-include-HTML="h1.html"></div>
<div
w3-include-HTML="content.html"></div>
<script>
w3IncludeHTML();
</script>
</body>
<html>
ลองตัวเอง»