horloge.asp
----------------------------------
< %
Réponse.Expire = -1
atténuer un
a=maintenant()
Réponse.Écrire formatdatetime(a,2) & " " & formatdatetime(a,3)% >
-------------------------- --- ---
monheure.htm
--------------------
<html>
<body topmargin="0" leftmargin="0" style="background-color:#e0d0c0">
<largeur de la table="98%"><tr>
<td align="center" width="50%" style="font-size:16;font-weight:bold;">Programme de calcul des prix du plan de produit de Changchun Rail Bus Co., Ltd.</td>
<td width="50%" align="right">
<input type="text" style="font-size:12px;border:none;background:;" size="18" id="myTime" />
</td>
</tr>
</table>
</corps>
</html>
<langage de script="javascript">
//Méthode simple, implémentée avec le code le plus simple, mais il existe de nombreuses erreurs potentielles
/*
fonction getClock()
{
var XmlHttp = nouvel ActiveXObject("Msxml2.XMLHTTP")
XmlHttp.Open( "POST", "clock.asp", false );
XmlHttp.Send();
if (XmlHttp.status == 200) myTime.value=XmlHttp.responseText ;
window.setTimeout("getClock()", "1000")
}
setInterval("getClock()",1000);
*/
</script>
Si vous souhaitez rendre le programme plus compatible et plus robuste, vous pouvez modifier mytime.htm comme suit
------------------------------- -- ------
monheure.htm
--------------------
<html>
<body topmargin="0" leftmargin="0" style="background-color:#e0d0c0">
<largeur de la table="98%"><tr>
<td align="center" width="50%" style="font-size:16;font-weight:bold;">Programme de calcul des prix du plan de produit de Changchun Rail Bus Co., Ltd.</td>
<td width="50%" align="right">
<input type="text" style="font-size:12px;border:none;background:;" size="18" id="myTime" />
</td>
</tr>
</table>
</corps>
</html>
<script>
//Méthode complexe, ajoutant beaucoup de détection et de gestion des erreurs
var xmlhttp, alerté
essayer {
xmlhttp=nouveau ActiveXObject("Msxml2.XMLHTTP")
} attraper (e) {
essayer {
xmlhttp=nouveau ActiveXObject("Microsoft.XMLHTTP")
} attraper (E) {
alert("Veuillez installer les analyseurs XML de Microsoft")
}
}
si (!xmlhttp && !alerted) {
essayer {
xmlhttp = nouveau XMLHttpRequest();
} attraper (e) {
alert("Votre navigateur ne prend pas en charge l'objet XMLHttpRequest, veuillez mettre à jour");
}
}
fonction getClock()
{
si (xmlhttp) {
xmlhttp.Open("Obtenir","clock.asp",true);
xmlhttp.onreadystatechange=RSchange ;
xmlhttp.send();
}
}
setInterval( "getClock()", 1000 );
fonctionRSchange()
{
si (xmlhttp.readyState==4) {
monHeure.value = xmlhttp.responseText;
}
}
</script>