标签:
解决方法如下:
1、让每次调用的URL都不一样。
方法:在参数中加一个随机数
$.getJSON("/Member/GetExercise.html", { id: $("#Wareid").val(), isBool: loop, random: Math.random() }, function (data) });
2、将cache设为false
$.ajax({ type:"GET", url:‘/Member/GetExercise.html‘, cache:false, dataType:"json", success:function (data){ alert(data); } });
标签:
原文地址:http://www.cnblogs.com/caoyc/p/4312905.html