iso中input很奇怪,点击空白地方,键盘也不会消失,影响页面中其他功能 解决办法: 点击的元素不是input或者textarea,那么就让上一个获得焦点的输入框失去焦点. 涉及的代码: <input type="tel" @focus="isohide($event)"> var iso = false;var nowinput = null;var browser={ versions:function(){ var u = navigator.u
最近一个项目,input输入框需要在页面的最下面(position:fixed),这样,当键盘获取焦点的时候, 苹果自带键盘不会挡住输入框,但是搜狗输入法的键盘就会挡住.可以用以下方法解决: document.activeElement.scrollIntoViewIfNeeded(); 当input标签获取焦点时,调用以上方法,就可调整当前页面,让页面中元素不被键盘挡住. 这个方法是干什么的呢?MDN是这样解释的: The Element.scrollIntoViewIfNeeded() me
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ
INPUT输入框灰体提示 <input type="text" value='15 words limit' style="color:#999999" onblur="inputTips_blur(this,'15 words limit')" onfocus="inputTips_focus(this,'15 words limit')"> function inputTips_focus(obj, defau