2 comments (2 comments)0 reactions (0 reactions)0 assignees (0 assignees)JavaScript4,458 stars (4,458 stars)1,218 forks (1,218 forks)batch import
help wanted
Description
INPUT calendar
两个输入框如上图排列的时候,光标停留在INPUT,手机会弹出键盘,这个时候点击日历控件,控件显示在键盘后面
Contributor guide
- Tech stack
- javascripthtmlcss
- Domain
- frontendmobile
- Issue type
- bug
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 3
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-3 hours
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- clear
- Prerequisites
- Basic CSS z indexMobile keyboard behavior
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 50
- Research direction
- The issue involves the calendar component appearing behind the mobile keyboard when input fields are focused. Likely the calendar's z index is too low or its position is not adjusted for the keyboard height. Look at the calendar's CSS in the source files (e.g., src/css/calendar.css) and JavaScript event handlers for focus/blur. Consider adding a z index value higher than the keyboard's overlay or using viewport units to position the calendar above the keyboard. The library is jQuery based, so use jQuery events to detect keyboard open/close if possible.