不幸的是,Weebly 没有提供使外部链接 noFollow 的方法。我联系了他们,但无济于事,然后我在网上寻找这个脚本。
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
jQuery('a').each(function() {
// Let's make external links open in a new window.
var href = jQuery(this).attr('href');
if (typeof href != 'undefined' && href != "" && (href.indexOf('http://') != -1 ||
href.indexOf('https://') != -1) && href.indexOf(window.location.hostname) == -1) {
jQuery(this).attr("rel", "nofollow");
}
});
//]]>
</script>
但是,此代码不起作用。你能告诉我有什么问题或帮助我解决问题吗?谢谢你。