'''
//触发事件
var active = {
notice: function () {
var telNo = $('#telNo').val();
console.log(telNo);
//示范一个公告层
layer.open({
type: 1
,
title: false //不显示标题栏
,
closeBtn: false
,
area: '300px;'
,
shade: 0.8
,
id: 'LAY_layuipro' //设定一个 id,防止重复弹出
,
btn: ['确定上传', '取消']
,
btnAlign: 'c'
,
moveType: 1 //拖拽模式,0 或者 1
,
content: '<div style="padding: 28px; line-height: 28px; background-color: #393D49; color: #fff;text-align: center">\n' +
' 请确认您输入的手机号\n' +
" <br><b style='font-size: 25px'>" + phoneFormat(telNo) +
'</b></div>'
,
yes: function (index,layero) {
layer.close(index);
uploadFile();
}
});
}
};
'''
重点是 yes 那里,我点击上传,先关闭弹出框,然后按钮变成 '上传中',web 端测试都没问题,.为啥到手机里,用微信还是用其他浏览器打开, 就是不关闭弹出框,折腾了一天了 ,真是无语啊(上传功能正常)
1
loading 2020-01-04 17:12:51 +08:00
layui 有自己的社区。
fly.layui.com |
2
p1094358629 OP @loading 一滩死水般沉寂...
|