收藏
回答

h5页面嵌入wx-open-launch-weapp,按钮显示,但是,点击没反应?

回答关注问题邀请回答
收藏

5 个回答

  • 🍒时光清浅
    🍒时光清浅
    2021-10-27

    我的代码没有问题,就是之前可以正常点击 现在就不行了,请问有知道什么原因的吗

    2021-10-27
    有用
    回复
  • 盐焗小星球
    盐焗小星球
    2021-09-30

    您好,我现在遇到一个问题 TypeError: Cannot read property 'addEventListener' of null 报这个错 点击没反应 请问有遇到过吗

    2021-09-30
    有用
    回复
  • 一π狐言
    一π狐言
    2021-07-28

    是测试的所有手机都不行么?跳转的小程序得是线上的小程序

    2021-07-28
    有用
    回复
  • 维她命系
    维她命系
    2021-07-28

    参考代码,username参数一定要填写正确,之前也是和你一样的问题,调试好长时间才发现username参数写错了。

    <wx-open-launch-weapp id="launch-btn" username="gh_xxx" path="/pages/index/index">
        <template>
            <style>
                button {
                    width: 200px;
                    height: 45px;
                    text-align: center;
                    font-size: 17px;
                    display: block;
                    margin: 0 auto;
                    padding: 8px 24px;
                    border: none;
                    border-radius: 4px;
                    background-color: #07c160;
                    color: #fff;
                }
            </style>
            <button>打开小程序</button>
        </template>
    </wx-open-launch-weapp>
    


    2021-07-28
    有用
    回复
  • MORNINGSTART(tiezhu)
    MORNINGSTART(tiezhu)
    2021-07-28

    贴代码,上报错

    2021-07-28
    有用
    回复 2
    • 小萌酱🍃
      小萌酱🍃
      2021-08-03
      <rt-card>
                      <wx-open-launch-weapp id="launch-btn" username="gh_f8af170f0cf0" path="pages/authcenter/authcenter">
        <template>
          <style>.btn { padding: 12px }</style>
          <button class="btn">打开小程序</button>
        </template>
      </wx-open-launch-weapp>
      <script type='text/wxtag-template'>
        var btn = document.getElementById('launch-btn');
        btn.addEventListener('launch', function (e) {
          console.log('success');
        });
        btn.addEventListener('error', function (e) {
          console.log('fail', e.detail);
        });
      </script>
                  </rt-card>
      2021-08-03
      回复
    • 小萌酱🍃
      小萌酱🍃
      2021-08-03
      没有报错
      2021-08-03
      回复
登录 后发表内容