您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關移動端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]*" 屬性
<!-- 數字鍵盤 帶有符號,非九宮格樣式 --> <input type="number"/> <!-- 九宮格數字鍵盤 --> <input type="number" pattern="[0-9]*"/> <!-- 電話號碼鍵盤 --> <input type="tel"/>
4. 搜索時,鍵盤的回車按鈕文字設定為“搜索”
解決: input 使用 type="search",放在 form 表單內。兩者結合就能使輸入法中的回車按鈕文字變為“搜索”
<form action=""> <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常見問題有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。