For example, there is an input field where you can select the date and time below.
<select name="year">
<option value="0">---</option>
<option value="2000">2000</option>
<option value="2001">2001</option>
<option value="2002">2002</option>
<option value="2003">2003</option>
</select> year
<select name="month">
<option value="0">---</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select> month
<select name="day">
<option value="0">---</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>day
Let's say you choose from the left.
If you tap the other select box without pressing Finish, the xth item in the select box that is currently in focus will be selected as the xth item in the previous item.Actually, I would like you to select the previous select box, but is there a way to solve this problem?
ios html
You can set a click event to the one you tap and implement it in javascript.
In iOS, the drum roll is commonly referred to as the drum roll, and the form parts with tabindex in the upper left corner with the prev next icon (<>) are focused in ascending order of numbers.There is a UX representative from a company who has many users doing this.
You can also exclude tabindex=-1
.
Then, the drum roll comes out and you may tap the next form without pressing the completion, but you will need to create the form element and tabindex properly, and if you still can't, you will need to listen to the event in JavaScript.
In addition, experience has shown that optgroup may behave in ways that iOS does not quite understand, such as making multiple choices.
Can't tabindex control it well?
585 PHP ssh2_scp_send fails to send files as intended
574 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
925 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
626 Uncaught (inpromise) Error on Electron: An object could not be cloned
© 2024 OneMinuteCode. All rights reserved.