美文网首页
ios兼容 input输入时弹出键盘框 页面整体上移键盘框消失后

ios兼容 input输入时弹出键盘框 页面整体上移键盘框消失后

作者: 兔子丶哥 | 来源:发表于2019-11-06 11:52 被阅读0次

IOS设备中的微信内部浏览器

html:

<textarea id="contentInput" @focus="focus()" @blur="blur()"  cols="38" class='footer-text' placeholder='说点儿什么...'></textarea>

JS:

focus:function() {

        this.scrollTop = document.scrollingElement.scrollTop;

      },

      blur:function() {

        document.scrollingElement.scrollTo(0, this.scrollTop);

      },

相关文章

网友评论

      本文标题:ios兼容 input输入时弹出键盘框 页面整体上移键盘框消失后

      本文链接:https://www.haomeiwen.com/subject/jqhubctx.html