MUI框架之a链接无法跳转的问题

MUI框架之a链接无法跳转的问题

最近在mobile的项目中用到了mui前端框架,自己先学习了一下,感觉功能挺全,就选择用了mui的前端h5的框架,由于是第一次用到,难免会踩坑。

用的时候,nav里面的a链接怎么都跳不到制定的页面,琢磨了半天,才发现了这个办法。直接引入页面script标签里面就可以了

 以下为js

mui('body').on('tap','a',function(){

    window.top.location.href=this.href;

});

但是这样不能根本解决问题

还是需要官方的方法比较靠谱。

扫描二维码关注公众号,回复: 6558621 查看本文章


<script src="js/mui.min.js"></script>
<script type="text/javascript">
mui.init();

var subpages = [
'dao_about.html',
'dao_chat.html',
'dao_contact.html',
'dao_setting.html'
];
var subpage_style = {
top: '45px',
bottom: '51px'
};

var aniShow = {};

//创建子页面,首个选项卡页面显示,其它均隐藏;
mui.plusReady(function() {
var self = plus.webview.currentWebview();
for (var i = 0; i < 4; i++) {
var temp = {};
var sub = plus.webview.create(subpages[i], subpages[i], subpage_style);
if (i > 0) {
sub.hide();
}else{
temp[subpages[i]] = "true";
mui.extend(aniShow,temp);
}
self.append(sub);
}
});

//创建子页面,首个选项卡页面显示,其它均隐藏;
mui.plusReady(function() {
var self = plus.webview.currentWebview();
for (var i = 0; i < 4; i++) {
var temp = {};
var sub = plus.webview.create(subpages[i], subpages[i], subpage_style);
if (i > 0) {
sub.hide();
}else{
temp[subpages[i]] = "true";
mui.extend(aniShow,temp);
}
self.append(sub);
}
});

//当前激活选项
var activeTab = subpages[0];
var title = document.getElementById("title");
//选项卡点击事件
mui('.mui-bar-tab').on('tap', 'a', function(e) {
var targetTab = this.getAttribute('href');
if (targetTab == activeTab) {
return;
}
//更换标题
title.innerHTML = this.querySelector('.mui-tab-label').innerHTML;
//显示目标选项卡
//若为iOS平台或非首次显示,则直接显示
if(mui.os.ios||aniShow[targetTab]){
plus.webview.show(targetTab);
}else{
//否则,使用fade-in动画,且保存变量
var temp = {};
temp[targetTab] = "true";
mui.extend(aniShow,temp);
plus.webview.show(targetTab,"fade-in",300);
}
//隐藏当前;
plus.webview.hide(activeTab);
//更改当前活跃的选项卡
activeTab = targetTab;
});
//自定义事件,模拟点击“首页选项卡”
document.addEventListener('gohome', function() {
var defaultTab = document.getElementById("defaultTab");
//模拟首页点击
mui.trigger(defaultTab, 'tap');
//切换选项卡高亮
var current = document.querySelector(".mui-bar-tab>.mui-tab-item.mui-active");
if (defaultTab !== current) {
current.classList.remove('mui-active');
defaultTab.classList.add('mui-active');
}
});

然后编写分html就可以了

猜你喜欢

转载自www.cnblogs.com/xiedashi/p/11060402.html