标签:style blog color io os sp div on log
估计都快有两年历史了~也无需重构,因为差不多已经是最简版本。vbs纯粹是为了好玩,几次看到vbs身处语言排行榜的最尾端,心疼啊。
1 on error resume Next ‘遇到错误继续执行 2 dim url, val 3 url = InputBox("输入需要灌水的网址:") 4 val = InputBox("输入需要灌水的内容:") 5 set ie = wscript.createObject("internetExplorer.application") 6 ie.navigate(url) 7 ie.visible = true 8 9 do while ie.busy or ie.readystate <> 4 10 wscript.sleep 50 11 loop 12 13 do 14 ie.document.getElementById("fastpostmessage").innerHTML = val 15 ie.document.getELementById("fastpostsubmit").click() 16 wscript.sleep 3000 17 loop
标签:style blog color io os sp div on log
原文地址:http://www.cnblogs.com/bigbigsunrise/p/4052536.html