html如何调用html
发布网友
发布时间:2022-04-26 18:06
我来回答
共3个回答
热心网友
时间:2023-10-20 02:42
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来实现,这个就不多说了
热心网友
时间:2023-10-20 02:43
如何定义“调用html”
是指在当前页面包含其他页面的html片段(A包含B)
还是指在当前页面通过一定方法跳转到另一个页面(A跳转至B)?
热心网友
时间:2023-10-20 02:43
通过嵌套iframe 实现调用其他页面
<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>