让一个页面的html内容导入到另一个页面的方法:
利用<iframe></iframe>来 *** 作,如有A,B两个文件,现将A插入到B页面, *** 作如下:在B页面的<body></body>的开头或者结尾写入<iframe src="a.html"></iframe>,具体位置按照自己的需求来写即可;
如:<html> <head></head> <body>
这是B页面 <iframe src="a.html">这是A</iframe> </body> </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:hiddenoverflow-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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)