Home > Web Front-end > JS Tutorial > Input binding carriage return event analysis

Input binding carriage return event analysis

小云云
Release: 2018-03-21 17:22:31
Original
3318 people have browsed it


##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)" >
Copy after login

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)
	}
Copy after login
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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template