jQuery load multiple html files in one element

后端 未结 2 770
北荒
北荒 2020-12-11 06:22

How do i load multiple html files and putting them into a specified html element?

I tried with no changes:

$(\'#asd\').load(\'file.html,pippo.html\')         


        
2条回答
  •  醉酒成梦
    2020-12-11 06:49

    you could get multiple items and add them to the element.

    jQuery.ajaxSetup({ async: false }); //if order matters
    $.get("file.htm", '', function (data) { $("#result").append(data); });
    $.get("pippo.htm", '', function (data) { $("#result").append(data); });
    jQuery.ajaxSetup({ async: true });  //if order matters
    

提交回复
热议问题