sIFR:不适用于自定义 div 多次
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它应该有效。
“替换我”是一个类还是一个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.
id 属性必须具有唯一的值,多个具有相同 id 的元素是错误的。
要对多个元素使用相同的样式,请使用 class 属性。
将此 html 替换
为
并将 sifr 配置中的此替换
为
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
with
And replace this in your sifr config
with this