sIFR:不适用于自定义 div 多次

发布于 2024-07-26 18:51:52 字数 166 浏览 3 评论 0原文

使用 sIFR 版本。 436,最新版本。 完美地替换 h1、h2、h3、h4 标签,与页面上的一样多。 但是,如果我尝试替换自定义 div,例如“替换我”,它只会替换第一个实例,而不替换页面上的其他实例。 我也在 2.0 版本上对此进行了测试,并得到了相同的结果。 这是否只是软件的限制,它不允许我这样做?

Using sIFR rev. 436, latest release. Replaces h1, h2, h3, h4 tags flawlessy, as many as I have on the page. However, if i try replacing a custom div, say Replace Me it replaces only the first instance, but not the others on the page. I tested this on the 2.0 release as well and got the same results. Is this just a limitation of the software that it won't let me do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尾戒 2024-08-02 18:51:52

它应该有效。

“替换我”是一个类还是一个id?

粘贴相关的代码片段,显示哪些内容有效,哪些内容无效。

It should work.

Is "Replace Me" a class or an id?

Paste relevant pieces of code that shows what works and what doesn't work.

巴黎盛开的樱花 2024-08-02 18:51:52

id 属性必须具有唯一的值,多个具有相同 id 的元素是错误的。

要对多个元素使用相同的样式,请使用 class 属性。

将此 html 替换

<div id="champion">DELICIOUS APPETIZERS</div>
<div id="champion">Appetizers</div>
<div id="champion">Ulitimate Trios</div>

<div class="champion">DELICIOUS APPETIZERS</div>
<div class="champion">Appetizers</div>
<div class="champion">Ulitimate Trios</div>

并将 sifr 配置中的此替换

sIFR.replace(champion, {
  selector: '#champion',
  css: '.sIFR-root { color: #c21212; }'
});

sIFR.replace(champion, {
  selector: '.champion',
  css: '.sIFR-root { color: #c21212; }'
});

The id attribute has to have a unique value, having more than one element with the same id is wrong.

To use the same styling for multiple elements use the class attribute.

replace this html

<div id="champion">DELICIOUS APPETIZERS</div>
<div id="champion">Appetizers</div>
<div id="champion">Ulitimate Trios</div>

with

<div class="champion">DELICIOUS APPETIZERS</div>
<div class="champion">Appetizers</div>
<div class="champion">Ulitimate Trios</div>

And replace this in your sifr config

sIFR.replace(champion, {
  selector: '#champion',
  css: '.sIFR-root { color: #c21212; }'
});

with this

sIFR.replace(champion, {
  selector: '.champion',
  css: '.sIFR-root { color: #c21212; }'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文