.load html代码而不替换div

时间:2014-04-01 06:59:34

标签: jquery html load

我用

$('#new-nav1').load("/yiite/index.php/includes/load_second #table",{

      ID:ID,name:name,ord:ord
});

我想把它放在加载的数据下,会有很多数据,这就是为什么把它加载到另一个div不是解决方案 每次更换idv#new-nav1。

中的元素

2 个答案:

答案 0 :(得分:1)

您可以使用临时div加载数据后附加。

$("<div/>").load("/yiite/index.php/includes/load_second #table", {
    ID: ID, name: name, ord: ord
}, function () {
    $(this).appendTo("#loaded-data").unwrap();//unwrap removes the temp div
});

答案 1 :(得分:0)

您可以尝试ajax调用,如下所示..

$(document).ready(function() {
        $.ajax({
        url: "/yiite/index.php/includes/load_second #table",
        type: 'GET',
        data: {ID:ID,name:name,ord:ord},
        success: function(responseText){
            $('#new-nav1').append(responseText);
        },
        error: function(responseText){
        }
    });
    });

有关更多信息: -

http://api.jquery.com/append/

http://api.jquery.com/jQuery.ajax/