你好
我想在 div 标签中显示主页。这是一个小代码,可在浏览器 Firefox、Chrome、Opera 中运行,但在 Internet Explorer 中不起作用。有人提示吗?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="http://localhost/myproj/jquery-1.9.0.min.js"></script>
<style>
body {
background-color: lightsalmon;
}
.inner_homepage_div {
position: fixed;
top : 100px;
left : 0px;
width: 100%;
z-index:10;
}
</style>
<title></title>
</head>
<body>
<script type="text/javascript">
(function($) {
$(document).ready(function() {
function fHeight() {
$('#inner_page').height($(window).height()-125);
$('#hpage').css({
'width': '100%',
'height': '100%'
});
}
$('#inner_page').html('<object id="hpage" data="http://www.ee" />');
fHeight();
fHeight();
$(window).resize(fHeight);
});//
})(jQuery);
</script>
<div id="inner_page" class="inner_homepage_div"></div>
</body>
</html>
谢谢