1 回答
TA贡献1828条经验 获得超13个赞
尝试添加动态 url 以防止缓存:
$.ajax({
url: "http://...&em=" + email,
type: "GET",
cache: false,
success: function (rese) {
if (rese === "E1") {
} else {
var checker = setInterval(function () {
$.ajax({
url: "http://...&key=" + rese,
type: "GET",
cache: false,
success: function (resee) {
alert(resee);
}
});
}, 3000);
}
}
});
- 1 回答
- 0 关注
- 84 浏览
添加回答
举报