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>
熱點內容