ue姐姐覺得當彈起輸入法時,這個提交按鈕不應該跟著一起彈起來
image.png
按理說我們每個吸低元素都是這樣寫的哦
position: fixed;
bottom: 0;
//可能還有一個
left: 0;
right: 0;
width: 100%;
這樣的話輸入法彈起來,吸低元素會一起彈起來
解決辦法:
var winHeight = window.innerHeight;
$('body').css('minHeight', winHeight);
// css
body {
position: relaction;
}
吸低元素 {
position: absolute;
bottom: 0;
}