1. 去掉input 在iOS中的默认 圆 角和内阴影
iOS下 input会有 自带 的圆角和内阴影,去掉方法如下:
input{ - webkit -ap PE arance: none; border-radius: 0; }
2. 焦点 在 input 时,placeholder 没有隐藏
input:focus :: -webk IT -i nput-placeholder{ opacity: 0; }
3. input 输入框调出数字键盘
单独使用type="number"时,iOS调起的并不是九宫格样式的数字键盘,如果需要调起九宫格的数字键盘需要加上 pattern="[0-9]*" 属性
<!-- 数字键盘 带有符号,非九宫格样式 --> <input type="number"/> <!-- 九宫格数字键盘 --> <input type="number" pattern="[0-9]*"/> <!-- 电 话号码键盘 --> <input type="tel"/>
4. 搜索时,键盘的回车按钮文字设定为[搜索]
解决: input 使用 type="se Arch ",放在 form 表单内。两者结合就能使 输入法 中的回车按钮文字变为[搜索]
<form action=""> <input type="search" /> </form>
5. 改变 input placeholder颜色
::-webkit-input-placeholder { /* WebKit br owsers */ 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 E xp lorer 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才有用,比如:
// openNotifyRe play 是click触发的事件 openNotifyReplay = (e) => { this.set stat e({ notifyReplayVisible: true }, ()=>{ document.getElementById("replayPopupText").focus() }) }
到此这篇关于移动端HT ML 5 input常见问题(小结)的 文章 就介绍到这了,更多相关移动端HTML5 input内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
@H_ 126 _61@总结
以上是 为你收集整理的 移动端HTML5 input常见问题(小结) 全部内容,希望文章能够帮你解决 移动端HTML5 input常见问题(小结) 所遇到的问题。
如果觉得 网站内容还不错, 推荐好友。
查看更多关于移动端HTML5 input常见问题(小结)的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did206107