首頁 > web前端 > H5教程 > 主體

關於HTML5 input placeholder 的顏色修改

不言
發布: 2018-06-12 15:44:10
原創
2265 人瀏覽過

這篇文章主要介紹了有關HTML5 input placeholder 顏色修改的知識,需要的朋友可以參考下 Chrome支援input=[type=text]佔位文字屬性,但下列CSS樣式卻不行:

CSS 

input[placeholder], [placeholder], *[placeholder] { 
color:red !important; 
}
登入後複製

HTML input語句

<input type="text" placeholder="Value" />
登入後複製

運行結果值還是灰色,Color:red沒有作用。有什麼方法可以修改佔位文字的顏色嗎?我在瀏覽器安裝了jQuery佔位文字插件,但仍然無用。 (!important只有IE7和firefox能辨識)

回答:

toscho:有三種實作方式:偽元素(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裡會扮演元素的真實角色。

CSS選擇器

因為每個瀏覽器的CSS選擇器都有差異,所以需要針對每個瀏覽器做單獨的設定。

::-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(文字方塊可拉伸)風格樣式的程式碼,如下: 

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { 
color: #636363; 
} 
input:-moz-placeholder, textarea:-moz-placeholder { 
color: #636363; 
}
登入後複製

brillout.com:input和Textarea的字體顏色均為紅色。所有樣式都要針對不同的選擇器而定,不要打包整體處理,因為其中一個出問題,其他的都會失效。

*::-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; 
}
登入後複製

最後一種是從網路上找的: 

$('[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(''); 
} 
}) 
});
登入後複製

這個程式碼呼叫的規則是,先載入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='';" style="color: #f00;"/>
登入後複製

以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!

相關建議:

HTML5的contenteditable屬性解析

#

以上是關於HTML5 input placeholder 的顏色修改的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!