空间技术网-移动端HTML5 input常见问题(小结)

这篇文章首要介绍了空间技术网移动端HTML5 input常见问题(小结),文中通过示例代码介绍的十分详细,对我们的学习或者作业具有一定的参考学习价值,需求的朋友们下面随着小编来一起学习学习吧

1. 去掉input 在iOS中的默认圆角和内暗影

iOS下 input会有自带的圆角和内暗影,去掉方法如下:

input{
-webkit-appearance: none;
border-radius: 0;
}

2. 焦点在 input 时,placeholder 没有隐藏

input:focus::-webkit-input-placeholder{
opacity: 0;
}

3. input 输入框调出数字键盘

独自使用type=”number”时,iOS调起的并不是九宫格款式的数字键盘,假如需求调起九宫格的数字键盘需求加上 pattern=”[0-9]*” 属性

4. 查找时,键盘的回车按钮文字设定为“查找”

解决: input 使用 type=”search”,放在 form 表单内。两者结合就能使输入法中的回车按钮文字变为“查找”

 

5. 改变input placeholder颜色

::-webkit-input-placeholder { /* WebKit browsers */
color: #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #999;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #999;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #999;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* WebKit*/
color: #666;
}
input:-moz-placeholder, textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #666;
}
input::-moz-placeholder, textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #666;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* IE 10+ */
color: #666;
}

6. iOS下autofocus focus()失效的问题

iOS下不能主动获取焦点,有必要是在监听到用户发出的事件的函数中执行focus才有用,比如:

// openNotifyReplay 是click触发的事件
openNotifyReplay = (e) => {
this.setState({
notifyReplayVisible: true
}, ()=>{
document.getElementById(“replayPopupText”).focus()
})
}

到此这篇关于移动端HTML5 input常见问题(小结)的文章就介绍到这了,更多相关移动端HTML5 input内容请查找脚本之家以前的文章或继续浏览下面的相关文章,希望我们今后多多支持脚本之家!

共有 0 条评论

发表评论

邮箱地址不会被公开。 必填项已用*标注