2

大きなページからページのさまざまな要素に特定のアイテムをロードする必要があります。私が書いたコードは機能していますが、アイテムは 1 つずつロードされ、多くの一時停止の後にロードされます。私は完全な開発者ではなく単なるデザイナーであるため、間違った方法で行っているのではないかと考えています。

私のコードは次のようになります:

$("#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 に答える