gpt4 book ai didi

javascript - 动态使用 webfont 图标作为输入字段中的占位符

转载 作者:行者123 更新时间:2023-11-30 11:14:09 24 4
gpt4 key购买 nike

我正在尝试使用 MaterialDesignIcons webfont 作为占位符字体来动态设置输入字段占位符。

当用作 static 占位符时,它按预期工作,当文本字段为空时显示图标。

<input type="text" id="sampleInput" placeholder="&#xF6E3;" />

input#sampleInput::-webkit-input-placeholder {
font-family: "Material Design Icons";
}

enter image description here

使用动态 jquery 方法给我带来了一些问题。似乎字符代码没有正确转义为 html。

$('#sampleInput').prop('placeholder',"&#xF6E3;");

enter image description here

最佳答案

你能试试这个吗:

$('#sampleInput').prop('placeholder',"\uxF6E3");

你可以检查这个jsfiddle例子:http://jsfiddle.net/anaselalami/pty6ao7m/1/

关于javascript - 动态使用 webfont 图标作为输入字段中的占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52329691/

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