本文介绍了jQuery更改占位符文本颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用jQuery来设置占位符文本的颜色?/ - webkit-input-placeholder?
Is it possible to use "::-webkit-input-placeholder" with jQuery to set a color for the placeholder text?
p>
Something like this:
$("input::-webkit-input-placeholder").css({"color" : "#b2cde0"});
推荐答案
。您必须修改现有的。
You can't really modify pseudo-selectors with JavaScript. You'll have to modify an existing a <style>
element.
如果可能,请创建一个类:
If possible, make a class:
.your-class::-webkit-input-placeholder {
color: #b2cde0
}
并将其添加到元素:
$('input').addClass('your-class');
这篇关于jQuery更改占位符文本颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!