Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在检查我在具有 iOs 5.1 的 Ipad 中的应用程序当我在 textarea 中点击时,光标会在书写线上方跳两行。焦点在正确的位置,但光标的视觉外观在焦点线上方两行。关于此的任何建议。
这是 CSS 文件代码
这是从萤火虫而不是从文件中提取的 HTML 部分(您可以看到标签名称) 视频以显示问题(视频不是我制作的,但问题类似)
iPad 可能对touch事件有一些补偿,您可以使用如下函数取消它:
touch
$('#yourTextarea').on('touchstart', function (event) { event.preventDefault(); //should prevent the hop // rest of your code goes here });