ถ้าต้องการให้ iframe ขยายอัตโนมัติตามเนื้อหาที่อยู่ข้างในเราสามารถใช้โค้ทด้านล่างปรับความสูงได้ครับ
1 2 3 4 5 6 | < script > function iframeHeight(obj){ the_height= obj.contentWindow.document.body.offsetHeight; obj.height=the_height+10; } < iframe id = "some" onload = "iframeHeight(this)" ></ iframe > |