我目前正在使用以下代码将生成的内容插入到DIV中:
$(this).next("div").load("getcontent","contentid="+id");
但是,目前这将替换getpost返回的内容中的任何内容。我想要的是在下一个div的开头插入内容。用jQuery这可能/容易吗?
答案 0 :(得分:2)
使用prepend,例如:
$.get('getcontent',"contentid="+id, function(html) {
$(this).next("div").prepend(html);
});