问一个mui ui 页面传值的问题

如果a.html传值给b.html在mui中可以这么做

    mui.openWindow({
                                        url: "b.html",
                                        id: "b.html",
                                        waiting: {
                                            autoShow: false,
                                        },
                                        extras: {
                                            name: '' + UserName + '',
                                            password: '' + Userpassword + '',
                                        },
                                        waiting: {
                                            autoShow: true, //自动显示等待框,默认为true
                                        }
                                    });

在b.html页面这么接收

    mui.plusReady(function() {
        var self = plus.webview.currentWebview();
        alert(self.name);
});

在打开b.html页面的时候同时打开了c.html 我怎么将a.html的值传给c.html
我试了下不能用cookie也不能向上面那样做

解决了 用本地存储可以解决