如何利用JavaScript读取同一服务器中另一个html文件?

2024-12-04 01:39:09
推荐回答(4个)
回答1:

使用jquery比较简单:
1、引入jquery库文件
2、在a.html页面的head部分加入脚本:
$(function(){
$("#show_b").load("b.html", function(response){
$(this).append(response);

});

});

回答2:

通过div嵌套iframe实现





回答3:

注:需引用jquery


回答4:

通过ajax去请求就好,比如Jquery的ajax去get

$.get("b.html", function(html){alert(html);});