iPad Safari does not fire blur event

前端 未结 2 2077
心在旅途
心在旅途 2021-02-19 01:06

I have an html input text element in my application with jQuery blur event handler:

$(\'#textBox\').blur(function () { console.log(\'blur\'); })
<
2条回答
  •  执笔经年
    2021-02-19 01:38

    By design, a tap away will remove the hover state but the textbox will remain focused.

    Safari Web Content Guide should help you develop for Safari on IOS devices.

提交回复
热议问题