var clientHeight = document.body.clientHeight;? ?
var _focusElem = null; //輸入框焦點(diǎn)? ?
//利用捕獲事件監(jiān)聽輸入框等focus動作??
document.body.addEventListener("focus", function(e) {? ? ? ?
_focusElem = e.target || e.srcElement;? ? }, true);
? //因?yàn)榇嬖谲涙I盤顯示而屏幕大小還沒被改變鼎俘,所以以窗體(屏幕顯示)大小改變?yōu)闇?zhǔn)? ? window.addEventListener("resize", function() {? ? ??
if (_focusElem &&document.body.clientHeight< clientHeight) {? ? ? ?
? ? //焦點(diǎn)元素滾動到可視范圍的底部(false為底部)? ? ? ? ?
? _focusElem.scrollIntoView(false);? ? ? ? }?
? });