VB 中使用WebBrowser1.Document.getElementById("ucdos") 如果ucdos不存在,则会出错!
有没有办法判断"ucdos"存不存在?不想用onerrorgotoerr.......能不能通过其他方式避免这种情况呢?...
有没有办法判断"ucdos"存不存在? 不想用on error goto err.......能不能通过其他方式避免这种情况呢?
展开
1个回答
展开全部
Private Sub Command1_Click()
If WebBrowser1.Document.getElementById("ucdos") Is Nothing Then
MsgBox "ucdos不存在!"
Else
MsgBox "ucdos存在!"
End If
End Sub
If WebBrowser1.Document.getElementById("ucdos") Is Nothing Then
MsgBox "ucdos不存在!"
Else
MsgBox "ucdos存在!"
End If
End Sub
追问
太感谢了,非常好用!高手顺便问一下,如果定义了一个数组dim a() 如何判断它有没有被使用过.或者说如何判断它为空呢? 用isempty(a),isnull(a). 都不行...
追答
If Join(a, "") = "" Then
MsgBox "数组为空或尚未初始化"
Else
MsgBox "数组已使用"
End If
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询