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