2

我需要将大页面中的某些项目加载到页面的不同元素中。我编写的代码可以正常工作,但是项目会一个接一个地加载,并且在停顿很多之后。我想我可能做错了,因为我不是一个完整的开发人员,而只是一个设计师。

我的代码看起来像:

$("#lot-rental").load("/est.html #est-rental");
$("#lot-deposit").load("/est.html #est-deposit");
$("#lot-date").load("/est.html #est-date");
$("#lot-build").load("/est.html #est-build");
4

3 回答 3

6

用于$.get()加载数据,然后手动设置各个元素的内容。

$.get('/est.html', function(data) {
    $.each(['rental', 'deposit', 'data', 'build'], function(i, key) {
        $('#lot-' + key).html($(data).find('#est-' + key));
    });
}, 'html');
于 2012-06-03T13:19:16.577 回答
0

为什么不使用$.get解析响应(查找元素)并将它们加载到主页:

$.get('/est.html',function(html){
    //wrap in jQuery so we can use it as context
    html = $(html);

    //find the item in html, and append to the container in the current page
    $('#est-rental',html).appendTo('#lot-rental');
    //     ^          ^                  ^-- target
    //     |          '-- context
    //     '-- the element to find in HTML
});
于 2012-06-03T13:19:24.833 回答
0

试试这个

$("#lot-rental").load("est.html#est-rental");
$("#lot-deposit").load("est.html#est-deposit");
$("#lot-date").load("est.html#est-date");
$("#lot-build").load("est.html#est-build");
于 2012-06-03T13:22:01.850 回答