我有以下 Jquery 代码,它在网络浏览器和三星设备中运行良好。但它不适用于 iPhone 4。提前致谢。
<script>
$(document).on('focusin','#sendMessageText',function() { alert("in Focus");
$("#body").css( "height", "90%" );
$("#footer").addClass("hidden");
$(".footerIcons").addClass("hidden");
});
$(document).on('focusout','#sendMessageText',function() { alert("focus out");
$("#body").css( "height", "70%" );
$("#footer").removeClass("hidden");
$(".footerIcons").removeClass("hidden");
});
</script>