我的编码遇到了这个问题:
从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