在添加下拉刷新以后,文本框无法点击,没办法只能自己解决了
修改mui.js,将select,input,textarea排除在外
> _start: function(e) {
if (!this.loading) {
this.pulldown = this.pullPocket = this.pullCaption = this.pullLoading = false
}
var target = e.target;
while (target.nodeType != 1) {
target = target.parentNode;
}
if (target.tagName != 'SELECT' && target.tagName != 'INPUT' && target.tagName != 'TEXTAREA') {
e.preventDefault();
}
this._super(e);
},
优冰
- 发布:2015-08-31 17:07
- 更新:2015-08-31 17:07
- 阅读:3705
关于添加下拉刷新以后,文本框无法点击的解决方案
分类:MUI
4 个评论
要回复文章请先登录或注册
NUN
NUN
NUN
DCloud_UNI_CHB