美文网首页前端让前端飞Web前端之路
实现在客户端和pc端打开qq聊天框

实现在客户端和pc端打开qq聊天框

作者: 花花0825 | 来源:发表于2018-05-04 14:40 被阅读16次

html:

<a href="javascript:void(0);" onclick="chatQQ1()" target="_blank"></a>

js:

function chatQQ1(){

if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {

//移动端打开

window.location.href = "mqqwpa://im/chat?chat_type=wpa&uin=2355350046&version=1&src_type=web&web_src=oicqzone.com";

} else {

//pc端打开

window.location.href = "tencent://message/?uin=2355350046&Site=qq&Menu=yes";

} }

相关文章

网友评论

    本文标题:实现在客户端和pc端打开qq聊天框

    本文链接:https://www.haomeiwen.com/subject/vspdrftx.html