input获取焦点,但不调起键盘
$('#floatLabel').on('focus', () => {
isFocus = true
$('#floatLabel').attr("readOnly", true) //设置readOnly属性
setTimeOut(function(){
$('#floatLabel').attr("readOnly")//延迟移除readonly属性
}, 200)
})
#floatLabel是input元素

浙公网安备 33010602011771号