Sub moneydjiecss_主力進出()
Const url As String = "https://www.moneydj.com/z/zg/zgb/zgb0.djhtm?a=7030&b=7030"
Dim ie As Object, table As Object
Set ie = CreateObject("internetexplorer.application")
With ie
.Visible = False
.Navigate url
Do While .busy Or .readystate <> 4
DoEvents
Loop
Set table = .document.queryselectorall("table table").Item(11)
解析表格 table, 0
Set table = .document.queryselectorall("table table").Item(12)
解析表格 table, 5
.Quit
End With
Set table = Nothing
Set ie = Nothing
End Sub