开发者

get jquery .load() to append rather than replace?

is th开发者_Python百科is possible?


You can use jQuery.get() to append data...

jQuery.get("URL", function(data) {
    jQuery("#myElement").append(data);
});


I believe you have to use .get:

$.get('ajax/test.html', function(data) {
  $('.result').append(data);
});

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜