http://blog.youkuaiyun.com/z88xiaodong/article/details/48341325
mui('.mui-slider-item').on('tap', '.mui-slider-item a', function(e) {
var href = this.getAttribute('href');
console.log('当前轮播图片地址:'+href);
//打开跳转链接
mui.openWindow({ //目标页面
url:'lunbo.html',
id: 'lunbo.html',
extras:{
href:href
}
});
});
//页面跳转事件委托
mui('body').on('tap','a',function(){
window.top.location.href=this.href;
});