我正在使用jqmobi。 http://jqmobi.com/testdrive - 同样在这里
在iOS上,当输入字段变得聚焦时,内容会向上移动。我希望标题保持在同一位置。
答案 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);
});
干杯! :)