我与cordova
,phonegap
和jquery
移动设备合作,
在Android设备上键盘封面文本输入时打开。
(在IOS上它运作良好)
我刚刚测试过:
preference name="fullscreen" value="false"
`meta name="viewport" content="user-scalable=no, initial-scale=1, maximum- scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi"`
`$(document).ready(function(){
$("input").focus(function(){
$('html body').animate({
scrollTop: $(this).offset().top
}, 2000);
});
}`
解决方案是什么?