isAndroid() {
window.addEventListener('resize', function() {
if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
}, 0);
}
});
}
使用案例:
<textarea
placeholder="请您描述详细问题"
value={rtnDesc}
onFocus={() => this.isAndroid()}
>
</textarea>