|
√ Google adsense申请技巧 √ 本站核心代理域名注册主机业务
√ 快速发布你的买卖域名买卖网站信息
√ 1元注册 cn域名
√ 站长每日新闻导读 √ ·推荐万网空间¥120元 150m √ 站长网:站长必上的网站 √ 网站联盟大全 √ 本站代理万网域名55空间120元 |
| // The URL to download var url = "http://www.aboutnt.com/default.htm" // Create instance of Inet Control inet = new ActiveXObject("InetCtls.Inet"); // Set the timeout property inet.RequestTimeOut = 20; // Set the URL property of the control inet.Url = url; // Actually download the file var s = inet.OpenURL(); // Show the raw HTML to the user WScript.Echo( s ); // Bonus - Find the title of the page // Regular expression to find the string stored between // the title tags. rtitle = /<title>(.*)<\/title>/i; // Execute the regular expression on the raw HTML var title = rtitle.exec( s ); // Display the result |