mui.plusReady(function() {
getTemplate('cv-center-template', 'cv-center-template.html');
});
var subWebview = null,
template = null;
mui('.info').on('tap', 'a', function() {
var href = this.href;
template = plus.webview.getWebviewById("cv-center-template");
console.log(template);
subWebview = template.children()[0];
mui.fire(template, 'updateHeader', {
title: "",
showMenu: false
});
if (subWebview.getURL() != href) {
subWebview.loadURL(href);
} else {
subWebview.show();
}
template.show('slide-in-right', 150);
});
我在简历中心这个页面有个菜单,我想像MUI的list.html中那样使用预加载模板,但是我又不想在list.html那个页面中加载其他模板(除了default-main),我想在进入简历中心这个页面的时候预加载一个模板,然后在根据点击的菜单加载不同页面,但是总是template打印出来总是undefined