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

관련 문제