溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vbs如何自動(dòng)填表單

發(fā)布時(shí)間:2021-10-13 15:11:41 來(lái)源:億速云 閱讀:128 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)vbs如何自動(dòng)填表單,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

dim ie 
set ie=createobject("internetexplorer.application") 
ie.visible=true 
ie.navigate "http://www.ln.chinaunicom.com/index.shtml" 
While ie.busy or ie.readystate<>4 
EndWhile 
ie.document.all("userid").value= "13304948957"'手機(jī)號(hào)碼 
ie.document.all("passwd").value = "111111"'密碼 
ie.document.all("verifycode").value = "1111"'識(shí)別碼 
ie.document.all.loginOnForm.submit 

一調(diào)試腳本就顯示 缺少對(duì)象:"ie.document.all("....")" 
"ie.document.all.loginOnForm.submit"這行還顯示對(duì)象不支持此屬性或者方法 
請(qǐng)各位大俠幫忙看看 哪里出了錯(cuò) 謝謝啦
提問(wèn)者: fxdca2008 - 試用期 一級(jí) 
最佳答案
樓主代碼有幾處錯(cuò)誤: 
1. EndWhile應(yīng)為Wend 
2. 網(wǎng)頁(yè)上的手機(jī)號(hào)碼、密碼等表單元域其實(shí)是在一個(gè)<iFrame>中的網(wǎng)頁(yè)上,不能直接調(diào)用,而應(yīng)該使
用ie.document.frames(0).document.loginOnForm...來(lái)調(diào)用 
正確代碼如下(可以自動(dòng)填寫交提交,提交上去以后會(huì)返回“識(shí)別碼錯(cuò)誤”的提示,屬于正?,F(xiàn)象)
: 
Sub test() 
Dim ie 
Set ie = CreateObject("internetexplorer.application") 
ie.Visible = True 
ie.navigate "http://www.ln.chinaunicom.com/index.shtml" 
While ie.busy Or ie.readystate <> 4 

Wend 
ie.document.frames(0).document.loginonform.UserId.Value = "13304948957" '手機(jī)號(hào)碼 
ie.document.frames(0).document.loginonform.passwd.Value = "111111" '密碼 
ie.document.frames(0).document.loginonform.verifycode.Value = "1111" '識(shí)別碼 
ie.document.frames(0).document.loginonform.submit 
End Sub

關(guān)于“vbs如何自動(dòng)填表單”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vbs
AI