请问如何打开一个网站
比如要用ie打开 www.google.com.hk 本帖最后由 infotechewen 于 2011-6-6 14:07 编辑Run("explorer.exe http://www.google.com.hk") 本帖最后由 annybaby 于 2011-6-6 15:16 编辑
回复 1# faceyao ShellExecute('www.autoitx.com')
Run('explorer.exe http://www.autoitx.com')
Run('E:\垃圾长期存放处\TheWorld2.4Final_2.4.1.7_chs\TheWorld.exe www.autoitx.com')晕,用AU3代码竟然会自动对网址前后加入URL~~{:face (52):} #include <IE.au3>
$oIE = _IECreate ("www.autoitscript.com") 大侠好多啊 建议多看帮助 大侠是不会来这个帖子的,先把帮助文件看一遍,再自己论坛搜索 #include <IE.au3>
$oIE = _IECreate ("www.baidu.com",0,0,1,0);打开一个ie,输入百度网址
$oForm = _IEFormGetObjByName ($oIE, "f");返回一个指定名称的表单对象.
$oQuery1 = _IEFormElementGetObjByName ($oForm, "wd");返回一个指定名称的表单元素的对象.
_IEFormElementSetValue ($oQuery1, "你妈逼");返回一个给定表单元素的值.
_IEFormSubmit ($oForm,1);提交一个指定表单.
_IEAction ($oIE, "visible");在浏览器上执行任意一个简单设置命令
Sleep(2000) #include <IE.au3>
$oIE = _IECreate ("www.autoitscript.com") 回复 4# aft52577
觉得如果是这样简单的一个动作没必要 #include<IE.au3>,这样会使用编译后的文件大很多,就算是用了UPX压缩也会大36KB!!
另外这个也是用默认的浏览器打开,不一定是IE~ Run(@ProgramFilesDir & "\Internet Explorer\IEXPLORE.EXE http://www.baidu.com/") 边学边赚点银子,穷啊 呵呵 各种办法 ShellExecute('http://www.autoitx.com')
这个函数是用默认浏览器打开的网址 #include <IE.au3>
$oIE = _IECreate (" www.google.com.hk")
这貌似帮助里有呀
页:
[1]
2