首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

xmlhttp读取frame中的内容二

2013-09-05 
xmlhttp读取frame中的内容2各位高手:http://www.livescore.in/双击“Odds”,如何取得以下内容?似乎加过密了[

xmlhttp读取frame中的内容2
各位高手:
http://www.livescore.in/
双击“Odds”,如何取得以下内容?
xmlhttp读取frame中的内容二
似乎加过密了
[解决办法]

自己去琢磨球队名称:



Private Sub CommandButton1_Click()    '取得Livescore内容
    With CreateObject("msscriptcontrol.scriptcontrol")
        .Language = "JavaScript"
        t1 = Right(.Eval("(new Date).getTime();"), 4)
    End With
    With CreateObject("Microsoft.XMLHTTP")
        .Open "GET", "http://d.livescore.in/x/feed/fo_1_0_8_en_4_0~" & t1, False
        .setRequestHeader "x-fsign", "SW9D1eZo"
        .send
        ss = Split(.responseText, "AA÷")
    End With
    tt = Right(Split(Split(ss(1), "XA÷")(1), "YA÷")(0), 1)
    For i = 1 To UBound(ss)
        uu = Replace(ss(i), tt, "")
        Debug.Print Split(uu, "AY÷")(0), Split(Split(uu, "XA÷")(1), "YA÷")(0), Split(Split(uu, "XB÷")(1), "YB÷")(0), Split(Split(uu, "XC÷")(1), "YC÷")(0)
    Next i
End Sub

热点排行