页面QQ临时对话的实现

一.开通QQ服务

点我进入QQ推广官网>然后点击推广工具即可后面自己看中文

二.页面a标签

<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=你的QQ号&site=qq&menu=yes">

三.js实现

<button>QQ交谈</button>
<script>
    document.querySelector('button').onclick=function () {
        window.location.replace('http://wpa.qq.com/msgrd?v=3&uin=你的QQ&site=qq&menu=yes')
    }
</script>
原文地址:https://www.cnblogs.com/pythonywy/p/11633676.html