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.
我正在使用 Cargo Collective 平台在模板中工作,它在我的文档中添加了不必要<br />的标签。body
<br />
body
如何编写一两行 jQuery 来搜索<br />页面上的每个标签并删除它们,或者什么都不替换?
毫无疑问,奥斯汀的答案是完美的,但如果你愿意,你也可以使用display: none;
display: none;
br { display: none; }
演示
您可以使用选择器brand .remove(),就像这样。
br
.remove()
$('br').remove();
JSFiddle
此外,对于特定的 div 或元素
#some_element br { display: none; }