mui踩坑

  1. popovers
// 点击弹出
mui('.mui-bar').on('tap','.mui-btn',function(){
    mui('#topPopover').popover('show',document.getElementById("btn")); // 将id为btn的元素放在想要弹出的位置
});

用法参考:https://www.cnblogs.com/ooo0/p/6114545.html

问题:弹出框跟随tableview下移

//删除样式
#topPopover {
    position: fixed;
    top: 16px;
    right: 6px;
}
#topPopover .mui-popover-arrow {
    left: auto;
    right: 6px;
}

你可能感兴趣的:(mui踩坑)