有没有办法在博客帖子中禁用超链接或用平面锚文本替换它们。我确实找到了一些代码来更改评论中的超链接,但没有尝试更改帖子的结果:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'/>
<script>$('.comment-content a[rel$=nofollow]').replaceWith(function(){return ($(this).text());});</script>
谢谢。
答案 0 :(得分:1)
如果您想从帖子中选择超链接,可以使用.comment-content
选项卡特定于评论部分。{/ 1}}。
像这样,
.post-body
它用纯文本替换超链接,如果你想保留锚元素并只删除href属性试试这个,
$('.post-body a').replaceWith(function(){
return $(this).text();
});