HTML input fields does not get focus when clicked

后端 未结 27 2053
予麋鹿
予麋鹿 2020-12-08 06:11

I have a problem and I can\'t figure out what exactly is causing this behavior. I cannot access my input fields and textareas on my HTML form.

Unfortun

27条回答
  •  庸人自扰
    2020-12-08 06:26

    If you are faced this problem while using canvas with DOM on mobile devices, the answer of Ashwin G worked for me perfectly, but I did it through javascript

    var element = document.getElementById("myinputfield");
    element.onclick = element.select();
    

    After, everything worked flawlessly.

提交回复
热议问题