从javascript加载另一个html页面

时间:2010-01-07 06:15:39

标签: javascript html

是否可以从html页面加载Javascript程序,然后使Javascript加载另一个html页面而不是加载程序的页面?

4 个答案:

答案 0 :(得分:29)

是。在javascript代码中:

window.location.href = "http://new.website.com/that/you/want_to_go_to.html";

答案 1 :(得分:7)

您可以添加一个.js文件,其中包含用于设置

的脚本
window.location.href = url;

其中url是您要加载的网址。

答案 2 :(得分:4)

是否可行(仅在线工作并仅加载您的页面或文件):https://w3schools.com/xml/xml_http.asp试试我的代码:

function load_page(){
qr=new XMLHttpRequest();
qr.open('get','YOUR_file_or_page.htm');
qr.send();
qr.onload=function(){YOUR_div_id.innerHTML=qr.responseText}
};load_page();

qr.onreadystatechange而不是qr.onload也使用。

答案 3 :(得分:0)

您可以使用以下代码:

transactions