admin管理员组

文章数量:1349744

I'm looking for a cross browser solution to handling carriage return, to submit input from a text box.

My current issue is firefox...

javascript event is not defined

<input id="myinput" type="text" onkeydown="press();" value="X"/>

<script type="text/javascript">
function press() {
    if (event.keyCode == 13) {
    // do something
    }
}
<script>

I can use jquery.

I'm looking for a cross browser solution to handling carriage return, to submit input from a text box.

My current issue is firefox...

javascript event is not defined

<input id="myinput" type="text" onkeydown="press();" value="X"/>

<script type="text/javascript">
function press() {
    if (event.keyCode == 13) {
    // do something
    }
}
<script>

I can use jquery.

Share Improve this question asked Apr 17, 2012 at 8:43 JulesJules 7,77416 gold badges106 silver badges195 bronze badges 1
  • 2 If you can use jQuery you should use it to attach the event handlers as well, rather than using inline attributes. – Anthony Grist Commented Apr 17, 2012 at 8:52
Add a ment  | 

4 Answers 4

Reset to default 8

Where does event e from? :-)

Here is the solution you're looking for:

// First, change the HTML to:
<input id="myinput" type="text" onkeydown="return press( event );" value="X" />

// Then, on the JS part:
function press( e ) {
    var evt = e || window.event
    // "e" is the standard behavior (FF, Chrome, Safari, Opera),
    // while "window.event" (or "event") is IE's behavior
    if ( evt.keyCode === 13 ) {
        // Do something

        // You can disable the form submission this way:
        return false
    }
}

Note the use of return in this function and the HTML event to prevent the form from submitting (which is the default behavior when you press [Enter] in a form's field).

However, I'd remend removing the javascript part in the HTML, and go straight with:

document.getElementById('myinput').onkeydown = function( e ) {
    // Your code
}

This allows you to have unobtrusive javascript

For the jQuery way, this'd be the following:

$('#myinput').on( 'keydown', function( e ) {
    // jQuery normalizes the "e" parameter, so you can use:
    if ( e.keyCode === 13 ) {
        // Do something
    }
} )

P.S.: event is actually the same as window.event, which is the correct use for IE. This is not the standard though, which other browsers (FF, Chrome...) use. Which is why we use the trick provided (var evt = e || window.event, where e was passed as argument).

first of all, you must define event for the use in FF/Chrome/Opera/.. in the function definition and in the function call. (onkeydown)

HTML:

<form method="POST" action="/">
<input id="myinput" type="text" onkeydown="return press( event )" value="X"/>
</form>

JavaScript:

function press(e) {
    // IE uses "window.event", others pass the event as argument
    var evt = e || window.event;
    if (evt.keyCode == 13) {
        // do something
        alert("enter!");

        return false;
    }
}

Note the use of return in both the function definition and the function call in the HTML markup. It prevents the form from submitting, which is the default behaviour when you hit enter in an input inside a form.

$('#myinput').keypress(function(e){
      if(e.which == 13){
         //do something.
         e.preventDefault();
       }  
});

You need to declare the event parameter that will be passed to your function:

function press(event) {
    if (event.keyCode == 13) {
    // do something
    }
}

本文标签: javascriptCross browser keydown handling of carriage returnStack Overflow