qgs163 发表于 2012-1-1 21:08:09

如何获取onclick的内容

如下代码
<A hideFocus style="hide-focus: true" onclick="jySendStat('index', 'chat');foui.publicWinOpen('/?c=webchat&a=render&friend=103628251');return false;" href="javascript:;">加为好友</A>
有什么方法能获取103628251这个数据呢,找了好多资料,都没找到解决方法
求解{:face (319):}

afan 发表于 2012-1-1 22:08:53

Local $Str = '<A hideFocus style="hide-focus: true" onclick="jySendStat(' & "'index', 'chat');foui.publicWinOpen('/?c=webchat&a=render&friend=103628251');return false;" & '" href="javascript:;">加为好友</A>'
;MsgBox(0, '原字符串', $Str)
Local $Test = StringRegExp($str, 'friend=(\d+)', 1)
If Not @Error Then MsgBox(0, '匹配数量: ' & UBound($Test), $Test)

zxxputian1 发表于 2012-1-2 11:59:00

好主意,谢谢共享

qgs163 发表于 2012-1-2 19:05:32

本帖最后由 qgs163 于 2012-1-2 19:28 编辑

感谢afan大大。
页: [1]
查看完整版本: 如何获取onclick的内容