Home > Article > Web Front-end > Input binding carriage return event analysis
##This article mainly shares with you the input binding enter event analysis, mainly Sharing it in the form of code, I hope it can help everyone.
##<input type="text" id="message" onkeypress="return onKeyPress(event)" >
script
## function onKeyPress(e) {
var keyCode = null;
if(e.which)
keyCode = e.which;
else if(e.keyCode)
keyCode = e.keyCode;
if(keyCode == 13) {
SendMessage();
return false;
}
return true;
}
function SendMessage() {
console.log(1)
}
Related recommendations:
jquery binding carriage return action Event triggered by catching the Enter key_jquery
The above is the detailed content of Input binding carriage return event analysis. For more information, please follow other related articles on the PHP Chinese website!