Ajax随机加载远程页面的全部或部分内容?

时间:2017-01-12 14:31:25

标签: javascript php jquery ajax

我的编码遇到了这个问题:

the_page.php我使用Ajax加载the_template.php的内容。

问题是,有时它会正确显示the_template.php的完整内容,有时则不会。奇怪的是,当我点击response时,通过"检查元素"每次加载完整内容时都会看到,但部分显示在实际页面上。

如果我点击刷新,有时会完全加载,但有时不会。

有没有人对可能出现的问题有任何疑问?

the_page.php

$.ajax({
    url: "url here",
    cache: false,
    dataType: "html",
    success: function(data) {
        $('#currTabTarget').html(data);
    }
});

the_template.php

html and js code

对检查元素的响应

It loads the full code everytime, as it should be

0 个答案:

没有答案