过程是登陆->登陆完成->跳转到home页
登陆后, 在iOS系统中无法跳转, 安卓中可以跳转, 这个是怎么回事?
谁可以帮下.
主要代码如下
mui.fire(plus.webview.all()[1], 'goto', {
title: 'mui.fire.test',
href: 'home.html'
});
过程是登陆->登陆完成->跳转到home页
登陆后, 在iOS系统中无法跳转, 安卓中可以跳转, 这个是怎么回事?
谁可以帮下.
主要代码如下
mui.fire(plus.webview.all()[1], 'goto', {
title: 'mui.fire.test',
href: 'home.html'
});
asker (作者)
document.getElementById('reg').addEventListener('tap',function(){
console.log('click 注册');
mui.fire(plus.webview.all()[1], 'goto', {
title: '注册',
href: 'user/reg.html'
});
});
代码是这样的, plus.webview.all()[1]是主页, 那应该如何修改?
asker (作者)
已经更新了代码
2015-04-10 16:35