


Javascript implements pressing the Enter key to switch focus_javascript skills
I learned HTML and CSS some time ago and became interested in this aspect. I also started to learn JavaScript Advanced Programming (Third Edition). I have been learning these days and just learned about events and form scripts. A few days ago, the teacher asked me to write a piece of code: in a javascript form, use the enter key and the up, down, left, and right keys to move the focus from one text box to the previous or next text box. Applying the knowledge learned so far, I tried to write code. I encountered several difficulties during the writing process: modulo calculation; using this and arguments inside the function to find the triggering event; using the addHandler() method to add an event handler to the event. With the help of the teacher, I solved the above problems. I feel that I have learned a lot of knowledge through this code, so I will write comments after finishing it and publish it.
<script><br> function is_down(e) {<br> var isDown;<br> e = e || window.event;<br> switch (e.keyCode) {<br> case 13: //Enter key<br> case 39: //Move right key<br> case 40: //Move down key<br> isDown = true;<br> break;<br> case 37: //Move left key<br> case 38: //Move up key<br> isDown = false;<br> break;<br> }<br> return isDown;<br> }<br> function key_up(){<br> //When calling a function, the function itself will generate this and arguments<br> //Use this and arguments to find the field and triggered event respectively<br> var e=arguments[1];<br> return is_down(e) === undefined ? true : handle_element(this, is_down(e));<br> }<br> function handle_element(field, is_down) {<br> var elements = field.form.elements;<br> for (var i = 0, len = elements.length-1; i < len; i ) {<br /> If (field == elements[i]) {<br /> break;<br /> }<br /> }<br /> i = is_down ? (i 1) % len : (i - 1) % len;<br /> //(0===i && is_down) --> After the last text box gets focus, press the down key <br> //(-1===i && !is_down) --> After the first text box gets focus, press the up key <br> If((0===i && is_down)||(-1===i && !is_down)){<br> return true;<br> }<br> elements[i].focus();<br> var element_arr = ['button', 'submit', 'reset', 'select-one', 'textarea'];<br> If (element_arr.join(',').indexOf(elements[i].type) > -1)<br> elements[i].select();<br> return false;<br> }<br> //Cancel the default submission form event on Enter<br> document.onkeydown = function(e) {<br> e = e || window.event;<br> If(e.keyCode == 13) {<br>e.preventDefault ? e.preventDefault() : (e.returnValue = false);<br> }<br> };<br> //Cross-browser recognition addEventListener and attachEvent(IE)<br> function addHandler(element, type, handler) {<br> if (element.addEventListener)<br> element.addEventListener(type, handler, false);<br> else if (element.attachEvent)<br> element.attachEvent("on" type, handler);<br> else<br> element["on" type] = handler;<br> }<br> var elements = document.forms[0].elements;<br> for (var i = 0, len = elements.length; i < len; i ) {<br /> //Add key_up event handler for keyup event<br /> addHandler(elements[i], "keyup", key_up);<br /> }<br /> </script>
The above is the entire content of the code. Personally, I feel that the writing is quite comprehensive, and all the places that should be taken into consideration have been dealt with. I hope everyone will like it.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

In Java, a carriage return is usually represented by a newline character. In Windows systems, "\r\n" is used to represent carriage return and line feed, while in Unix/Linux systems, "\n" is used. When reading text that contains carriage returns, Java treats these characters as normal characters. You can use the BufferedReader or Scanner classes to read text from an input stream until a carriage return or line feed is encountered.

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
