开发者

jQuery not detecting enter key pressed in textarea

开发者 https://www.devze.com 2023-04-01 10:33 出处:网络
My setup: jQuery 1.6.2 I have this HTML <textarea class=\"comment_box\"> Write a co开发者_如何学Cmment...</textarea>

My setup: jQuery 1.6.2

I have this HTML

<textarea class="comment_box"> Write a co开发者_如何学Cmment...</textarea>  

And the following Javascript

<script>
$('.comment_box').keydown(function (e){
    if(e.keyCode == 13){
        alert('you pressed enter ^_^');
    }
})
</script>

When I press the enter key in the textarea, nothing triggers

EDIT Oops, cut and paste error, I do have $ in my code and it still doesn't work, must be something else going on.

My bad, it is a user operator error, it does work. Sorry for the confusion.


$('.comment_box').keypress(function(event) {
    // Check the keyCode and if the user pressed Enter (code = 13) 
    if (event.keyCode == 13) {
        alert('you pressed enter ^_^');
    }
});

Thats it


Check out this answer:

jQuery Event Keypress: Which key was pressed?

var code = (e.keyCode ? e.keyCode : e.which);
 if(code == 13) { //Enter keycode
   //Do something
 }


For jQuery you need to use the $ to specify.

$('.comment_box').keyd

should do it.

0

精彩评论

暂无评论...
验证码 换一张
取 消