PSP総合 854

このエントリーをはてなブックマークに追加
503名無しさん必死だな
var ie;
var url,from,mail,message;

function wait()
{
while(ie.Busy || ie.ReadyState!=4){
WScript.Sleep(100);
}
}

function browser()
{
ie=new ActiveXObject('InternetExplorer.Application');
ie.Visible=true;
ie.Navigate(url);

wait();
}

function post()
{agree();
refresh();
ie.document.forms[0].elements[1].value=from;
ie.document.forms[0].elements[2].value=mail;
ie.document.forms[0].elements[3].value=message;
ie.document.forms[0].submit.click();

wait();
}