


Enter to switch input focus implementation ideas and code compatible with major browsers_jquery
When working on a project, the customer asked to be able to directly switch input (focus) with enter, and when the last one was reached, the information could be submitted directly.
The first idea is to copy a piece of code online and use it directly. But after searching on Baidu and Google, more than 80% of the codes found were the same. Some codes are too old and cannot be used. Some only work with some browsers. After struggling for half an hour, I still couldn't find a suitable solution. On last thought, I might as well do it myself.
1. Ideas
Every time you click Enter, get the current focus position, and then set its next element to get the focus;
2. Code
<script type="text/javascript"> $('input:text:first').focus(); document.onkeydown = function enterHandler(event) { var inputs = $("input"); //可自行添加其它过滤条件 var browser = navigator.appName ; //浏览器名称 var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var Code = '' ; if(browser.indexOf('Internet')>-1) // IE Code = window.event.keyCode ; else if(userAgent.indexOf("Firefox")>-1) // 火狐 Code = event.which; else // 其它 Code = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode; if (Code == 13) //可以自行加其它过滤条件 { for(var i=0;i<inputs.length;i++) { if(inputs[i].id == document.activeElement.id) { i = i== (inputs.length - 1) ? -1 : i ; $('#'+ inputs[i+1].id ).focus() break; } } } } </script>
Among them, because IE and Firefox obtain key values differently, a simple judgment is made on the browsers. This way you can get the key values you hit on each browser.
Finally, after obtaining the current value, you can add various other conditions.

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

While updating Windows 11 or upgrading from Windows 10 to Windows 11, you may encounter the error Wecouldnotupdatesystemreservedpartition. This may be accompanied by error code 0xc1900104, 0x800f0922 or 0xc1900201. What causes system reserved partition error? This may be caused by a full System Reserved Partition (SRP) that can no longer be written to. Additionally, some third-party security and antivirus applications write to the SRP and can fill it up quickly. Dual booting with Linux can also be the cause of this error. Additionally, if you

The best Windows 11 optional features let you take advantage of your PC's vast potential. You can activate productivity features and get more features. So it can be annoying to suddenly see these settings blank when you need them. Certain features go blank, ranging from faulty system settings to missing and corrupted files. Whatever the cause, we've collected seven simple yet effective fixes to help you restore Windows 11 optional features. Why is the Windows Features box empty? There are many reasons why the Windows 11 optional features box is empty. Here are some popular ones: Setup errors. The component store containing information about Windows functionality is corrupted. Corrupted system files. How to use Windows

Unfortunately, changing basic settings on your Windows device, such as brightness and volume, can be a bit cumbersome. To reach these mundane settings, users have to navigate several menus, which is rather unintuitive. Thankfully, Windows provides a tool that allows users to access and change these mundane settings with the click of a finger. The problem is that few people know it exists. And those who do may not know how to enable it. What is Windows Mobility Center? First introduced in Windows Vista, Windows Mobility Center or WMC is a built-in Windows component that centralizes the most relevant information and settings for portable and mobile devices. some of them

enter is on the right side of the main keyboard area, above the Shift key; the enter key is the enter key, also known as the confirmation key and the input key; there is a key with the word Enter or return on the computer keyboard, which is called the "enter key" ", where Enter is the name of Windows system, and it is called return in macOS.

When any patch is released or any feature is introduced, it is important to update the system frequently. If we don't do this, then we miss out on critical bug fixes, weak security, software incompatibilities, and more. The system might just be acting strange, or the program might simply crash. Normally, we update the system by browsing settings and update and security and then check if there are any updates available. How else can you update if you can't access settings or update and security options? Probably few of us have this problem but the solution is simple and can also be done using PowerShell commands. In this article, let us learn how to manually update Windows 10 system using PowerShell commands. Use PowerS

Enter is the Enter key; there is a key with the word Enter or Return on the computer keyboard, which is called the "Enter key". Enter is the name of the Windows system, and it is called return in macOS, and some Windows computers The enter key will have a curved arrow; the enter key has two functions, namely: 1. Confirming the entered execution command; 2. Functioning as a line break in word processing.

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.

Vue is a very powerful JavaScript framework that can easily help us build interactive web applications. Vue provides some very convenient features, including event modifiers. Event modifiers are a way to simplify DOM event binding and provide us with a way to quickly handle specific events. In Vue, we can bind events by using the v-on directive. The v-on directive allows us to listen for specific events and trigger event handlers. For common DOM things
