溫馨提示×

溫馨提示×

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

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

使用CSS修改HTML5 input placeholder

發(fā)布時(shí)間:2020-06-01 06:53:23 來源:網(wǎng)絡(luò) 閱讀:1084 作者:chen2009277025 欄目:移動開發(fā)

有三種實(shí)現(xiàn)方式:偽元素(pseudo-elements)、偽類( pseudo-classes)和Notihing。
WebKit和Blink(Safari,Google Chrome, Opera15+)使用偽元素

::-webkit-input-placeholder

Mozilla Firefox 4-18使用偽類

:-moz-placeholder

Mozilla Firefox 19+ 使用偽元素

::-moz-placeholder

IE10使用偽類

:-ms-input-placeholder

IE9和Opera12以下版本的CSS選擇器均不支持占位文本。需要注意的是偽元素在Shadow DOM里會起到元素的真實(shí)作用。
CSS選擇器
因?yàn)槊總€(gè)瀏覽器的CSS選擇器都有所差異,所以需要針對每個(gè)瀏覽器做單獨(dú)的設(shè)定。

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

Matt:textareas(文本框可拉伸)風(fēng)格樣式的代碼,如下:

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {  color: #636363;}input:-moz-placeholder, textarea:-moz-placeholder {  color: #636363;}

brillout.com:input和Textarea的字體顏色均為紅色。所有樣式都要針對不同的選擇器而定,不要打包整體處理,因?yàn)槠渲幸粋€(gè)出問題,其他的都會失效。

*::-webkit-input-placeholder {    color: red;
}

*:-moz-placeholder {    color: red;
}

*:-ms-input-placeholder {    /* IE10+ */
    color: red;
}

James Donnelly:在Firefox和IE里,正常input文本顏色覆蓋占位符顏色的方法:

::-webkit-input-placeholder { 
    color: red; text-overflow: ellipsis; 
}:-moz-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
}::-moz-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
} /* for the future */:-ms-input-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
}

還有一種好辦法:

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { 
    color:    #666;}input:-moz-placeholder, textarea:-moz-placeholder { 
    color:    #666;}input::-moz-placeholder, textarea::-moz-placeholder { 
    color:    #666;}input:-ms-input-placeholder, textarea:-ms-input-placeholder { 
    color:    #666;}

最后一種是從網(wǎng)上找的:

$('[placeholder]').focus(function() {        var input = $(this);        if (input.val() == input.attr('placeholder')) {
            input.val('');
            input.removeClass('placeholder');
        }
    }).blur(function() {        var input = $(this);        if (input.val() == '' || input.val() == input.attr('placeholder')) {
            input.addClass('placeholder');
            input.val(input.attr('placeholder'));
        }
    }).blur();
    $('[placeholder]').parents('form').submit(function() {
        $(this).find('[placeholder]').each(function() {            var input = $(this);            if (input.val() == input.attr('placeholder')) {
                input.val('');
            }
        })
    });

這個(gè)代碼調(diào)用的規(guī)則是,先加載Javascript再用CSS修改占位符屬性。

form .placeholder {   color: #222;   font-size: 25px;   /* etc */}

user1729061:不用CSS和占位文本,同樣能得到相同效果。

<input type="text" value="placeholder text" onfocus="this.style.color='#000'; 
this.value='';" />


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

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

AI