jqmobi。当输入的以字段为中心的内容向上移动时,在ios(ipod)上

时间:2012-09-03 15:27:27

标签: css ios html5 cordova jqmobi

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

在iOS上,当输入字段变得聚焦时,内容会向上移动。我希望标题保持在同一位置。

1 个答案:

答案 0 :(得分:0)

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

您可以使用$ .touchLayer事件'enter-edit-reshape'和'exit-edit-reshape'来检测调整大小的跨浏览器。

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

干杯! :)