php无刷新
发布时间: 2024-05-05 21:08:11
1. php jquery ajax无刷新问题
这个原因注意主要是因为IE7+和火狐这些浏览器的缓存机制导致的。将url参数的值修改下就可以了。
<script language="javascript" type="text/javascript">
$(document).ready(function()
{
$("#goCheck").click(function(){
//window.location.reload();
CheckLoginForm();
})
function CheckLoginForm()
{
var d=new Date();
$.ajax({
url:'/member/qreg.php?t='+d.toString(38),
type:'GET',
dataType:'html',
timeout:1000,
error:function(){
alert('...');
},
success:function(html){
$("#loginedForm").text(html);
}
})
}
})
</script>
热点内容