jqmobi。 在input字段集中的内容上移时,在ios(ipod)上

我正在使用jqmobi。 http://jqmobi.com/testdrive – 在这里相同

在iOS上,当input字段变得焦点时,内容向上移动。 我希望标题保持在相同的位置。

目前的jqMobi版本没有办法做到这一点。 解决方法是在手机进入键盘模式时根据document.body.scrollTop重新定位#jQUi style.top;

您可以使用$ .touchLayer事件“enter-edit-reshape”和“exit-edit-reshape”来检测resize的跨浏览器。

$.bind($.touchLayer, 'enter-edit-reshape', function(){ $('#jQUi').css('top', document.body.scrollTop+'px'); }); $.bind($.touchLayer, 'exit-edit-reshape', function(){ $('#jQUi').css('top', 0); }); 

干杯! 🙂