网页打开QQ链接,进行临时会话

  • Post author:
  • Post category:其他


<!-- 网页端 -->
<a href="http://wpa.qq.com/msgrd?v=3&amp;uin=QQ号&amp;site=qq&amp;menu=yes" target="_blank" class="justOpenWeb">联系QQ</a>
<!-- 移动端 -->
<a href="mqqwpa://im/chat?chat_type=wpa&uin=QQ号&version=1&src_type=web&web_src=oicqzone.com" target="_blank" class="justOpenAPP">联系QQ </a> 
 $(function(){
 // if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)) || navigator.appName == "Microsoft Internet Explorer") {
	if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent) || /(Android)/i.test(navigator.userAgent)) {
		$('.justOpenApp').show();
		$('.justOpenWeb').hide();
	}else {
		$('.justOpenWeb').show();
		$('.justOpenApp').hide();
	}
})



版权声明:本文为qq_38502227原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。