gpt4 book ai didi

html - polymer 数据绑定(bind) unicode

转载 作者:行者123 更新时间:2023-11-28 08:54:03 26 4
gpt4 key购买 nike

关于本主题:css ::before attr() and unicode .

我正在用 Polymer 编写一个元素,我希望能够将 unicode 数据绑定(bind)到 i 标签的属性中,该属性将在 css 规则内容的 attr() 中使用。

CSS:

i::before
{
content: attr(icon);
}

HTML:

<i icon="&#xf1e8"></i>       // works
<i icon="&#x{{ code }}"></i> // does not works

出于某种原因,它不起作用,代码数据绑定(bind)良好,但 unicode 打印为字符串而不是解释为我的图标。

数据绑定(bind)这种数据的好方法是什么?

最佳答案

数据绑定(bind)包括'\u'在代码工作之前。

例子:

icon = "\uf1e8"

数据绑定(bind)到

<i icon="{{ icon }}"></i>

关于html - polymer 数据绑定(bind) unicode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27208474/

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