2012-05-08 47 views
0

我在ipad上檢查我的應用程序有iOs 5.1 當我點擊textarea時,光標在寫入行上方跳過兩行。 堅持把重點放在正確的位置上,但光標的視覺外觀來自焦點線上方兩條線。 有關這方面的任何建議。iPad光標跳躍(位移)在textareas

This is CSS file code

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)

+1

代碼ü寫在這裏期待! –

回答

0

的iPad可能有一定的touch事件偏移量,這可以抵消與這樣的功能:

$('#yourTextarea').on('touchstart', function (event) { 
    event.preventDefault(); //should prevent the hop 
    // rest of your code goes here 
}); 
+0

這沒有幫助。當我在文本區域錄製時,使用上述方法後甚至不顯示光標 – Learner