获取某个网页的源码

  1. <HTML>
  2. <HEAD>
  3. <TITLE> New Document </TITLE>
  4. <meta http-equiv=Content-Type conent="text/html";charset="gb2312">
  5. <script type="text/javascript">
  6.     var xmlHttp;
  7.     function createObject(){
  8.            xmlHttp=null
  9.            try{
  10.           xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  11.           }catch(e){
  12.           xmlHttp=new XMLHttpRequest();
  13.           }   
  14.    return xmlHttp;          //create Object
  15. }
  16.     function getResult(name){    //submit & get result
  17.     xmlHttp=createObject();
  18.     xmlHttp.onreadystatechange=function(){    
  19.         if(xmlHttp.readyState==4){          //receive the responseText  
  20.         var result=xmlHttp.responseText;
  21.        alert(result);  //display result
  22.         }
  23.     };
  24.     var serverPage=document.getElementById("keyWord").value;     //set url
  25.     xmlHttp.open("get",serverPage,true);        //send  request
  26.     xmlHttp.send(null);
  27.     }
  28. </script>
  29. </HEAD>
  30. <BODY>
  31. <input type="text" value="" id="keyWord" size="150"><p></p>
  32. <input type="button" value="Search" οnclick="getResult(this.value);"><P>
  33. <span id="set" rows="50" cols="100">
  34. </span>
  35. </BODY>
  36. </HTML>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值