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.
23 lines
493 B
23 lines
493 B
<!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()">
|
|
{{iframe}}
|
|
</body>
|
|
|
|
</html> |