mui 进行父子页面传值以及接收

 1.在父级页面进行传值  (my)         
mui.openWindow({ url:
'a.html', id: 'a', extras: { my: 'listpub' },
});

2.自己页面接收值

  mui.plusReady(function() {

    //plus.webview.currentWebview 为获取父级页面
    value = plus.webview.currentWebview().my;
  });

 
原文地址:https://www.cnblogs.com/duanzb/p/9507847.html