1.小程序内部A页面向内嵌H5页面跳转,并且传参
小程序中A页面代码JS代码
Page({
toPtol(e){
const id=e.currentTarget.dataset[\'id\'];
const loadId=e.currentTarget.dataset[\'loadid\'];
console.log(loadId)
wx.navigateTo({
url: \'/pages/protocol/index?money=32132&loadId=\'+loadId
})
},
})
小程序中内嵌H5容器页面index.wxml(放入小程序页面的wxml)
1
|
<web-view src= "{{url}}" ></web-view> |
小程序中内嵌H5容器页面index.js (进入微信页面之后,加载是进行页面的参数获取)
1
2
3
4
5
6
7
8
9
10
11
|
Page({ /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { console.log(options); this .setData({ url: \'https://www.zhiyunyi.net/protocol.html?money=\' +options.mone+ \'&loadId=\' +options.loadId+ \'\' }) }, } |
远程H5页面获取参数JS代码
1
2
3
4
5
6
7
8
|
function getUrlParam(name) { var reg = new RegExp( "(^|&)" + name + "=([^&]*)(&|$)" ) var r = window.location.search.substr(1).match(reg) 全部评论
专题导读
热门推荐
阅读排行榜
|
请发表评论