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

Input binding carriage return event analysis

小云云
小云云Original
2018-03-21 17:22:313250browse


##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!

Statement:
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