gpt4 book ai didi

jquery - 占位符中的不同文本颜色

转载 作者:太空宇宙 更新时间:2023-11-04 12:14:46 25 4
gpt4 key购买 nike

是否可以在占位符中制作不同的文本颜色:例如,我不想让占位符像:

 <input id="place" name="place" type="text" placeholder="" class="form-control input-md" required="">

<script type="text/javascript">
var placeholder = "place for drilling <span>*</span>" ;
$('#place').attr('value', placeholder);

$('#place').focus(function () {
if ($(this).val() === placeholder) {
$(this).attr('value', '');
}
});

$('#place').blur(function () {
if ($(this).val() === '') {
$(this).attr('value', placeholder);
}
});
</script>

为什么我把这颗星放在 * 标签中,因为我不想让文本黑色和星红色来表明这个字段是必需的。但我没有找到将 html 放在占位符中的方法,而且我的版本无法正常工作。你可以在 img enter image description here 上看到它

所以我的完整问题是:如何在一个占位符中制作不同的文本颜色??

最佳答案

您可以像这样在 css 中定义并从那里开始

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

关于jquery - 占位符中的不同文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com