1.在html页面写入
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<script>
$('#dw').click(function(){
wx.miniProgram.navigateTo({url: '/pages/index/index?tz=1'});
})
//wx.miniProgram.navigateTo({url: 'pages/index/index?phone=18012121212'})
</script>
2.在小程序写一个中间页面,然后再中间页面写入button按钮事件
tz:function(){
wx.navigateToMiniProgram({
appId: '',
path: '',
envVersion: 'trial',//develop 开发版 trial 体验版 release 正式版
success(res) {
// 打开其他小程序成功同步触发
console.log(123);
},
fail:function(a){
console.log(456);
console.log(a);
}
})
},