You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.2 KiB

2 years ago
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>例子</title>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
function IFrameResize() {
$("iframe").each(function () {
let id = $(this).attr('id');
var obj = parent.document.getElementById(id);
obj.height = document.body.scrollHeight;
});
}
</script>
</head>
<body onload="IFrameResize()">
2 years ago
<iframe border=0 marginWidth=0 frameSpacing=0 marginHeight=0 src='01.html' frameBorder=0 noResize scrolling='no' width='100%' height='0px' vspale='0' id='childFrame1'></iframe>
<iframe border=0 marginWidth=0 frameSpacing=0 marginHeight=0 src='02.html' frameBorder=0 noResize scrolling='no' width='100%' height='0px' vspale='0' id='childFrame2'></iframe>
<iframe border=0 marginWidth=0 frameSpacing=0 marginHeight=0 src='03.html' frameBorder=0 noResize scrolling='no' width='100%' height='0px' vspale='0' id='childFrame3'></iframe>
2 years ago
<iframe border=0 marginWidth=0 frameSpacing=0 marginHeight=0 src='index.html' frameBorder=0 noResize scrolling='no' width='100%' height='0px' vspale='0' id='childFrame4'></iframe>
</body>
</html>