国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > AJAX > 正文

AJAX 動(dòng)態(tài)獲取當(dāng)前時(shí)間(php)

2024-09-01 08:29:22
字體:
供稿:網(wǎng)友
客戶端代碼:
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>動(dòng)態(tài)顯示時(shí)間</title>
</head>
<script language="javascript">
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject("microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
else{
alert("創(chuàng)建請求失敗");
}
}
function sendRequest(){
createXMLHttpRequest();
url = "time_check.php";
xmlHttp.onreadystatechange = callback;
xmlHttp.open('GET',url,true);
xmlHttp.send(null);
}
function callback(){
if(xmlHttp.readyState ==4){
if(xmlHttp.status == 200){
document.getElementById("time").innerHTML = xmlHttp.responseText;
setTimeout("sendRequest()",1000);
}
}
}
</script>
<body>
<input type="button" value="check it" onclick="sendRequest();" />
<br/>
<span id="time"></span>
</body>
</html>

服務(wù)器端代碼:
代碼如下:
<?php
header("cache-control:no-cache,must-revalidate"); //取消php頁面緩存的設(shè)置
header('Content-type: text/html;charset=GB2312');
$showtime = date("北京時(shí)間Y年m月d日H:i:s");
echo $showtime;
?>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 大冶市| 辽阳县| 汾阳市| 延吉市| 资溪县| 嵊州市| 视频| 塔河县| 永福县| 印江| 明光市| 新宁县| 忻州市| 东光县| 剑河县| 乳山市| 嘉定区| 高碑店市| 积石山| 长武县| 阜平县| 苍梧县| 太谷县| 湖州市| 江孜县| 黄石市| 公主岭市| 万荣县| 集安市| 鄂温| 神农架林区| 东兰县| 新郑市| 神木县| 武夷山市| 泾川县| 迭部县| 汝州市| 西青区| 哈巴河县| 保定市|