webview页面之间的传递
Posted 天马三环
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webview页面之间的传递相关的知识,希望对你有一定的参考价值。
这个问题很普遍,当你在新闻列表点击一条新闻的时候,是向新闻详情页面传递了一个新闻ID,然后新闻详情页面通过ID来获取该新闻的相关数据。
//list.html
mui.openWindow({ url: "about.html", id: "about", style: {}, show: { aniShow: ‘pop-in‘, duration: 200, }, waiting: { autoShow: false }, extras: {
param1:‘hello‘,
param2:‘world‘ } });
//about.html
mui.plusReady(function() { var w = plus.webview.currentWebview(); alert(w.param1+"-"+w.param2); });
以上是关于webview页面之间的传递的主要内容,如果未能解决你的问题,请参考以下文章
我的片段中有 webview,当滑动 webview 时, viewPager 也开始滑动