码迷,mamicode.com
首页 > 微信 > 详细

H5页面添加按钮跳转小程序

时间:2021-06-02 20:14:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ssd   get   btn   text   https   xxx   page   scene   func   

使用微信开放标签:wx-open-launch-weapp;

username:务必是gh_开头的小程序原始id

path:跳转小程序的地址及参数

务必需要引用http://res2.wx.qq.com/open/js/jweixin-1.6.0.js

JSSDK需要配置:openTagList:[‘wx-open-launch-weapp‘]

 

<wx-open-launch-weapp
  id="launch-btn"
  username="gh_XXXXXXXXXXX"
  path="pages/index/index?scene=7736_2316486_0_0"
>
 <script type="text/wxtag-template">
           ----您的按钮内容-----
       </script>
</wx-open-launch-weapp>

  

  var btn = document.getElementById(‘launch-btn‘);
  btn.addEventListener(‘launch‘, function (e) {
    console.log(‘success‘);
  });
  btn.addEventListener(‘error‘, function (e) {
    console.log(‘fail‘, e.detail);
  });

 

 

参考:

https://blog.csdn.net/xyphf/article/details/115193299 

H5页面添加按钮跳转小程序

标签:ssd   get   btn   text   https   xxx   page   scene   func   

原文地址:https://www.cnblogs.com/liuqingxia/p/14838099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!