使用 Diazo 即时删除属性
我想从标签中删除“类属性”。最好的办法是什么?
示例:
<div id="portlets-footer" class="row"> ... </div>
谢谢 维托
I want to strip the "class attribute" from a tag. What's the best way?
Example:
<div id="portlets-footer" class="row"> ... </div>
Thank's
Vito
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档 [1] 的 drop 部分,您可以使用“drop”+“attributes”:
“如果您想删除属性而不是整个标签,您可以使用 attribute 属性来提供以空格分隔的属性列表,应该被删除到匹配的主题节点上,例如,使用 attribute="class" 时,class 属性将从匹配的节点中删除。被丢弃。”
[1] http://diazo.org/basic.html
according to the drop's section of the docs [1] you can use "drop" + "attributes":
"If you want to drop attributes instead of whole tags, you can use the attributes attribute to provide a space-separated list of attributes that should be dropped on the matched theme node(s). For example, with attributes="class" the class attribute will be dropped from the matched node(s). Using attributes="class id", the class and id attributes will both be dropped."
[1] http://diazo.org/basic.html