a页面 用以下代码 预加载了 b 页面, 为什么进入b页面后, 页面头部还是a的?
var orderPage = $.preload({
url: '../order/index.html',
id: 'order',
show: {
aniShow: 'pop-in'
},
styles: {
top: '45px',
bottom: 0,
popGesture: 'hide'
}
});
$('#menus').on("tap", ".menu", function(e) {
$.openWindow(orderPage);
});
超人爷爷 (作者)
多谢~
2016-01-12 19:36