Forum de discussion
Forum « Programmation Javascript » (archives)
Marche sous FF mais pas sur IE...
Envoyé: 31 octobre 2005, 11h07 par benjiiim
<head>
<title>Test XmlHttpRequest</title>
<script type="text/javascript">
<!--/*--><![CDATA[/><!--
function getHTTPObject()
{
var x = false;
try {
x = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
x = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
try {
x = new XMLHttpRequest();
}
catch(e)
{
x=false;
}
}
}
return x;
}
function affich_truc(message)
{
var xmlhttp = getHTTPObject();
if(xmlhttp!=false)
{
document.getElementById('para').innerHTML="Votre navigateur ne supporte pas l'objet XmlHttpRequest";
return false; //en retournant false, on court circuite cette fonction et on peut ainsi proposer une solution tout php au visiteur qui ne supporte pas XmlHttpRequest
}
else
{
document.getElementById('para').innerHTML="C good";
}
}
//--><!]]>
</script>
</head>
<body>
<form id="formulaire">
<input type="text" id="texte" onKeyUp="affich_truc(this.value)" >
</form>
<div id="para"></div>
</body>
</html>
Réponses
|