火车采集器软件交流官方论坛

 找回密码
 加入会员
搜索
火车采集器V9版免费下载火车浏览器 - 可视采集,万能群发,全自动脚本工具
查看: 3417|回复: 0

定时访问指定页面的代码

[复制链接]
发表于 2007-11-14 11:53:09 | 显示全部楼层 |阅读模式
http://127.0.0.1/ceshi.html改成你要访问的地址,然后把以下代码保存成一个js文件。在windows任务计划里设定这个任务就行了,配合我在DEDECMS区发的自动采集插件,可以实现定时采集。当然这个代码别的用户你可以自己挖掘,用处多多,希望管理员+点车厢呵呵。

var html = "";
html += "<html><head><title>运行窗口</title></head><body>";
  html += "<font face=verdana></font>";
  html += "</body></html>";

// Create Internet Explorer Object
ie = new ActiveXObject("InternetExplorer.Application");

// Define how the window should look
ie.left = 50;
ie.top  = 50;
ie.height  = 510;
ie.width   = 470;
ie.menubar = 0;
ie.toolbar = 0;

// Set the browser to a blank page
ie.navigate("http://127.0.0.1/ceshi.html");

// Show the browser
ie.visible=1;

// Open a stream and write data.
//ie.document.open;
//ie.document.write( html );
//ie.document.close;
您需要登录后才可以回帖 登录 | 加入会员

本版积分规则

QQ|手机版|Archiver|火车采集器官方站 ( 皖ICP备06000549 )

GMT+8, 2024-11-15 07:33

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表