当前位置:Gxlcms > JavaScript > jQuery加载一个html页面到指定的div里面

jQuery加载一个html页面到指定的div里面

时间:2021-07-01 10:21:17 帮助过:4人阅读

本文讲述了jQuery如何加载一个html页面到指定的p里,jQuery $.ajax 如何请求另一个html页面的指定的一部分加载到本页面p,那就让我们来看看jQuery是怎么完成这些请求的吧。

jQuery如何加载一个html页面到指定的p里?

我想把a.html里面的某一部份的内容加载到b.html的一个p里。
比如,我要加载a.html里面的<p id=“aContent"></p>这个p里面的所有内容加载到b.html的这个p里<p id="rightCon"></p>
请问要怎么写呢。
用jquery ajax 可以做到
假设 a.html 和b.html在同一目录

b.html

<script >
$(document).ready(function() {
    bodyContent = $.ajax({
        url: "b.html",
        global: false,
        type: "POST",
        data: ({
            id: this.getAttribute('aContent')
        }),
        dataType: "html",
        async: false,
        success: function(msg) {
            alert(msg);
        }
    })
});
</script>

jQuery $.ajax 如何请求另一个html页面的指定的一部分加载到本页面p?

大至思路如下:

$.ajax( {
        url: url, //这里是静态页的地址
        type: "GET", //静态页用get方法,否则服务器会抛出405错误
        success: function(data){
            var result = $(data).find("另一个html页面的指定的一部分");
            $("本页面p").html(result);
        }
});

如果参数不明白可以参考

或参考下面的代码:

$(function(){
     $.ajax({
            type:"POST",
            url:"LoginLoadArticle.ashx",
            data: "type="+escape("最新公告") ,
            success:function(msg){
                $(".gonggao").html(msg);
            },
            error:function(XMLHttpRequest, textStatus, thrownError){}
        })
     
})

以上就是 jQuery加载一个html页面到指定的p里面 的所有的内容,希望对同学们有所帮助。

相关推荐:

JQuery在循环中绑定事件的问题详解

jQuery实现查找最近父节点的方法

高效Web开发的10个jQuery代码片段

以上就是jQuery加载一个html页面到指定的div里面的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行