<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>
html转化为asp,只要把.html后缀修改为.asp后缀就可以了html嵌入一个iframe可以实现,或者用js来添加也可以如果目的是为了上传到互联网上供大家浏览,那么网站转化为asp后,用<!--#file="" -->调用这个是最好的--------------如果只是纯碎的玩玩,那么用iframe或者js这个更加好一点,------------------首先是iframe嵌入,首先你把导航写在nav.html这个文件里面,然后调用代码为:<body><iframe src="nav.html" width="960px" height="50px" frameborder="0" scrolling="no"></iframe></body>-----------------------------js方法就是通过createElement以及createTextNode来实现,这个就不多说了