2016-11-25 83 views

回答

0

JS模糊方法未焦点文本框和键盘无法打开:)

$('#notFocusableInput').on('touchend mouseup', function(event){ 
 
    event.preventDefault(); 
 
    $(this).blur(); 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<!DOCTYPE html> 
 
<html> 
 
    <body> 
 
    <input id="notFocusableInput" type="text"> 
 
    </body> 
 

 
</html>