按enter还是会弹出这个东西,无法把焦点聚焦到这个layer弹出层,我想实现enter“确定”//layer弹出层function alert_1(content_1){ layer.open({ title: '智办互联', shadeClose: false, //点击遮罩关闭 content: content_1, }); }
1 回答
慕工程0101907
TA贡献1887条经验 获得超5个赞
layer.open({
title: '智办互联',
shadeClose: false, //点击遮罩关闭
content: content_1,
success:function(){
//失去焦点
$('input').blur();
}
});
添加回答
举报
0/150
提交
取消