好的,我有一个 ajax jsonp 请求,它抓取一大块 html,然后将其扔到页面上的 div 中。麻烦的是,随着数据的加载,内容类型的垃圾就位(因为它在 div 中构建了 html)
所以我想先将它加载到一个临时的页面外 div,一旦完成加载,将内容移动到我的主 div 中。
$.getJSON('getsomedata.php?jsoncallback=?',
function(data) {
if(data.success=="true")
{
// load into temp div
// pause? until loaded?
// move content into the real div
});