2017-03-05 50 views
2

我有下面的代碼觸發上的keydown如何用jQuery觸發回空間?

$('#input-div').keydown(function(e) { 
if(e.which == 13) { 
    userInput = $(this).val(); 
    $(this).val(userInput.substring(0,0)); 

這清除了輸入框的各種活動。但是由於按下了回車鍵,光標會移到第二行。輸入鍵被釋放後,我希望光標回到初始位置;關鍵了。

有幫助嗎?

回答

1

只需添加e.preventDefault()

$('#input-div').keydown(function(e) { 
 
    if(e.which == 13) { 
 
    userInput = $(this).val(); 
 
    $(this).val(userInput.substring(0,0)) 
 
    e.preventDefault() 
 
    } 
 
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<textarea id="input-div"></textarea>

+0

e.preventDefault()簡單地解決了這個問題,謝謝。 – Neo

0
<!DOCTYPE html> 
<html> 
<head> 
    <title></title> 
    <script 
    src="https://code.jquery.com/jquery-3.1.1.min.js" 
    integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" 
    crossorigin="anonymous"></script> 
</head> 
<body> 
    <form method="POST" id="userform"> 
     <input type="text" name="firstname" id="firstname"> 
     <input type="text" name="lastname" id="lastname"> 
    </form> 

    <script type="text/javascript"> 
    $("#userform").submit(function(e){ 
     return false;  
    }); 

    $("#userform input").keydown(function(e) { 
     if(e.which == 13) { 
      userInput = $(this).val(); 
      $(this).val(userInput.substring(0,0)); 
      $("#userform input#firstname").focus(); 
     }  
    });  
</script> 
</body> 
</html> 

你可以使用.focus()側重於具體的輸入框