$.messager.alert 弹出框的位置随页面的长度越大越靠下。

$.messager.alert('消息','只能对单个客户进行清款!','info');

弹出的位置 太靠下方。修改为:

$.messager.alert({ title:'消息',msg:'只能对单个客户进行清款!',icon:'info', top:$(window).height()/4 });

带回调函数的 消息框:

$.messager.alert({ 
    title:'消息',
    msg:'电话号码 只能是数字!',
    icon: 'info',
    width: 300,
    top:200 , //与上边距的距离
      fn:function(){
document.getElementById('dlg_tel_number').focus();//文本框 获取焦点
return;
}
});
05-24 07:52