coolele 发表于 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;
页: [1]
查看完整版本: 定时访问指定页面的代码