Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从标签中删除“类属性”。最好的方法是什么?
例子:
<div id="portlets-footer" class="row"> ... </div>
谢谢维托
根据文档 [1] 的 drop 部分,您可以使用“drop”+“attributes”:
“如果你想删除属性而不是整个标签,你可以使用 attributes 属性来提供一个空格分隔的属性列表,这些属性应该被删除到匹配的主题节点上。例如,使用 attributes="class" class 属性将从匹配的节点中删除。使用 attributes="class id",class 和 id 属性都将被删除。"
[1] http://diazo.org/basic.html