;~ URL = http://www.google.com/search?q= URL = http://www.baidu.com/s?wd= navOpenInNewWindow = 1 navOpenInNewTab = 2048 navOpenInBackgroundTab = 4096 navOpenNewForegroundTab = 65536 FileSelectFile, filepath,3,%A_ScriptDir%,Open a file,Text Documents (*.txt; *.ini) ;文件中一行一个关键字,用于批量读取在搜索引擎中搜索 wb := ComObjCreate("InternetExplorer.Application") ; create IE wb.Visible := true ; 'false' to not show IE loop, Read, %filepath% { if (A_index = 1) wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigate else wb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigate sleep 100 } return