A voir également:
- AJAX , HttpRequest , java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Java décompiler - Télécharger - Langages
- Jeux java itel - Forum Mobile
1 réponse
sa sera mieu comme sa ...
<html> <head> <title>TEST</title> <script> function Initialize() { try{ req=new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try{ req=new ActiveXObject("Microsoft.XMLHTTP"); } catch(oc){ req=null; } } if(!req&&typeof XMLHttpRequest!="undefined") { req=new XMLHttpRequest(); } } function Eror() { location.href='page_interne.html'; sleep(1000); } function Process() { if (req.status == 0) { if(req.responseText!="") { var data = req.responseText; location.href='http://www.google.fr'; sleep(1000); } } else{ alert('Erreur de status'); } } function SendQuery() { Initialize(); var url="https://www.google.fr/?gws_rd=ssl"; if(req!=null) { req.onreadystatechange = function() { if(req.readyState == 4) { Process(); } } req.open("GET", url, true); req.send(null); } } function BodyLoad() { SendQuery(); } </script></head> <body onload="BodyLoad();"> </body> </html>