当前位置:K88软件开发文章中心编程语言AspAsp01 → 文章内容

使用ASP查询QQ在线状态功能的代码

减小字体 增大字体 作者:佚名     来源:asp编程网  发布时间:2018-12-30 8:04:47

<script language="JavaScript">

  <!--

  function getFaceImg(QQcode)

  
{

  var Re=new RegExp("^[1-9]
{1}/d+$","g")

  if (!QQcode  !Re.test(QQcode)) return

  var URL="http://search.tencent.com/cgi-bin/friend/oicq_find?oicq_no="+QQcode

  var http=new ActiveXObject("Microsoft.XMLHTTP")

  http.open("GET",URL,false,"","")

  http.setRequestHeader("CONTENT-TYPE","text/html
Charset=gb2312")

  http.send()

  if (http.status!=200) return

  var webStr=http.responseText

  Re=new RegExp(""(http://img.tencent.com/face/[^"]+)"","ig")

  if (Re.test(webStr))

  return "<a href="http://search.tencent.com/cgi-bin/friend/user_show_info?ln="+QQcode+"" target=_blank title="QQ:"+QQcode+""><img src=""+RegExp.$1+"" width=16 height=16 border=0></a>"

  http=null

  }

  document.write("我的QQ状态:"+getFaceImg("44723461"))

  //-->

  </script>



使用ASP查询QQ在线状态功能的代码