溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

移動(dòng)端HTML5 input常見問題有哪些

發(fā)布時(shí)間:2021-05-07 10:43:37 來源:億速云 閱讀:136 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)移動(dòng)端HTML5 input常見問題有哪些的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

1. 去掉input 在iOS中的默認(rèn)圓角和內(nèi)陰影

iOS下 input會(huì)有自帶的圓角和內(nèi)陰影,去掉方法如下:

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

2. 焦點(diǎn)在 input 時(shí),placeholder 沒有隱藏

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

3. input 輸入框調(diào)出數(shù)字鍵盤

單獨(dú)使用type="number"時(shí),iOS調(diào)起的并不是九宮格樣式的數(shù)字鍵盤,如果需要調(diào)起九宮格的數(shù)字鍵盤需要加上 pattern="[0-9]*" 屬性

<!-- 數(shù)字鍵盤 帶有符號(hào),非九宮格樣式 -->
<input type="number"/>

<!-- 九宮格數(shù)字鍵盤 -->
<input type="number" pattern="[0-9]*"/>

<!-- 電話號(hào)碼鍵盤 -->
<input type="tel"/>

4. 搜索時(shí),鍵盤的回車按鈕文字設(shè)定為“搜索”

解決: input 使用 type="search",放在 form 表單內(nèi)。兩者結(jié)合就能使輸入法中的回車按鈕文字變?yōu)椤八阉鳌?/p>

<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下不能自動(dòng)獲取焦點(diǎn),必須是在監(jiān)聽到用戶發(fā)出的事件的函數(shù)中執(zhí)行focus才有用,比如:

// openNotifyReplay 是click觸發(fā)的事件
openNotifyReplay = (e) => {
    this.setState({
        notifyReplayVisible: true
    }, ()=>{
        document.getElementById("replayPopupText").focus()
    })
}

感謝各位的閱讀!關(guān)于“移動(dòng)端HTML5 input常見問題有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI