Tapping on

前端 未结 11 653
有刺的猬
有刺的猬 2021-01-30 21:51

Tapping on does not auto-focus linked in Mobile Safari but If an empty function as clickhandler is defined like this

document.getElem         


        
11条回答
  •  时光取名叫无心
    2021-01-30 22:18

    We were able to work around this issue at Etsy by simply adding this single line of code to our global javascript file.

    $('label').click(function() {});
    

    We are using the xui micro js library and that line simply attaches an empty click handler to all label elements. For some reason, this magically fixes the issue on mobile safari.

提交回复
热议问题