我正在使用iOs 5.1检查Ipad中的应用程序 当我点击textarea时,光标在书写线上方跳两行。 焦点是在正确的位置,但光标的视觉外观在焦点线上方两行。 对此有任何建议。
This is HTML part taken from firebug not from file(you can see tag names) video to show problem(video is not made by me , but problem is similar)
答案 0 :(得分:0)
iPad可能在touch
事件上有一些偏移,您可以使用以下功能取消:
$('#yourTextarea').on('touchstart', function (event) {
event.preventDefault(); //should prevent the hop
// rest of your code goes here
});