2016-11-25 95 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>