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.
37 lines
1.1 KiB
37 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<TITLE>列表</TITLE>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="../lib/jquery-3.6.0.min.js"></script>
|
|
<style>
|
|
#iframeTop{
|
|
width: 100%;
|
|
height: 70px;
|
|
}
|
|
#iframeLeft{
|
|
width: 25%;
|
|
height: 1280px;
|
|
float: left;
|
|
}
|
|
#iframeContent{
|
|
width: 74%;
|
|
height: 1280px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<iframe id="iframeTop" name="iframeTop" frameborder="0" src="view/top.html"></iframe>
|
|
<iframe id="iframeLeft" name="iframeLeft" frameborder="0" src="left.html"></iframe>
|
|
<iframe id="iframeContent" name="iframeContent" frameborder="0" src="./documentList.html"></iframe>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
let height = $(window).height();
|
|
$('#iframeLeft').attr('style', 'height: ' + height + 'px;');
|
|
$('#iframeContent').attr('style', 'height: ' + height + 'px;');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |