在一个html页面中想用JavaScript代码引用另一个abc.html页面的代码怎么写?
谢谢!! 展开
这个属于html嵌套页面。
是通过嵌套iframe 来实现嵌套html页面。
<script type=‘text/javascript’>
$(function () {
document.getElementById(‘ifm’).src =‘’;//Url地址
$(’#ifm‘).load(function (){
var h = document.body.clientHeight;
var w = document.body.clientWidth;
document.getElementById(’ifm‘).height = h + ‘px‘;
document.getElementById(’ifm‘).width = w + ’px‘;
});
})
</script>
<body style=‘overflow-y:hidden;overflow-x:hidden’>
<div id=’pageone‘ style=‘’>
<iframe name=‘ifm’ id=‘ifm’ scrolling=‘yes’ style=‘background-color:
transparent;’ marginwidth=‘0’ marginheight=’0‘ frameborder=‘0’>
</iframe>
</div>
</body>