日期:2014-05-16  浏览次数:20293 次

我是新手,想在网页中调用另外一个网页,如何实现??
我想在一个网页调用另外一个网页,就是直接把另外一个网页的内容搬过来用,用什么方法可以实现的吗?不要用<frame>

------解决方案--------------------
那用iframe
------解决方案--------------------
服务器端include

或者js document.write

或者说ajax
------解决方案--------------------
<%@include file="#"%>
------解决方案--------------------
<html>
<head>
<title>
新开窗口
</title>

</head>
<body>
<Script language="JavaScript">
window.open("***.html","newWin","toolbar=no,left=200,top=100,menubar=no,width=400,height=400,resizable=no");
//window.open("***.html","newWin","toolbar=yes,left=600,top=100,menubar=yes,width=100,height=100,resizable=yes");
//window.open("***.html");
</Script>
</body>
</html>