javascript — добавить атрибуты nofollow к моим внутренним ссылкам

я хочу применить атрибуты rel = «nofollow» ко всем внешним ссылкам, а не к внутренним ссылкам, таким как моя функция ниже, и я не уверен, как это реализовать?

Мой второй вопрос: правда ли, что нет смысла добавлять rel = «nofollow» с помощью JavaScript. Поисковые системы обычно не выполняют JavaScript?

 <div class="post">
<h2 class="post title" >
<a href="https://www.exemple0.com/" title="web site" ></a>
</h2>
</div>
<div class="post">
<h3 class="post title" >
<a href="https://www.exemple1.com/" title="web site" ></a>
</h3>
<li class="tags">
<span class="tag"><span class="tel">hello</span><br>
<a target="_blank" href="http://www.exempleInternal.com"> internal</a>
</li>
</div>
<div class="post">
<h4 class="post title" >
<a href="https://www.exemple2.com/" title="web site" ></a>
</h4>
</div>
<script >

$(document).ready(function() {
(function($){
$('a').each(function(){
$(this).attr('rel', "nofollow");
});
});
})
</script>

0

Решение

Вы можете проверить URL в теге href и добавить rel = nofollow.

$('a[href^="http"]:not([href^="http://www.example.com"],[href^="http://example.com"])').add('a[href^="www"]:not([href^="www.example.com"])').attr('rel', "nofollow")

Каждая ссылка, у которой нет «example.com», которая должна быть вашим доменным именем, получит дополнительный rel = nofollow.

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]