10/04/12 19:54:21 ykyy7MzU0
>>727
安直だけど
以下をalermIE.jsの名前で保存して、コマンドプロンプトから
C:\>cscript alermIE.js
---------------------
function IE_DocumentComplete(pDisp, URL){
if (pDisp.Document.body.innerHTML.match(/スポーツニュース/)) {
WScript.Echo("\x07");
WScript.Echo("found: "+URL);
}
}
var ie = WScript.CreateObject("InternetExplorer.Application", "IE_");
ie.visible = true;
ie.gohome();
while (true) {WScript.Sleep(1000);}
---------------------