很遗憾,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>


但是,此代码无效。
您能告诉我什么地方出问题或帮助我解决问题。谢谢。

最佳答案

Weebly支持JavaScript,但与普通的Web主机相比,它有一些不同的实现方式。

首先,将代码包装在$(document).ready中。然后,使用Custom HTML元素在页面中放置以下代码:

<script type='text/javascript'>
    //<![CDATA[
        $(document).ready(function() {
            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>


据我所知,Weebly已经在页面上包含了jQuery,但如果没有,请转到Settings-> SEO并添加jQuery脚本标签。这将使它显示在Weebly上的站点<head>中。

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>

关于javascript - 如何将NoFollw属性添加到我所有的网站外部链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31899041/

10-09 19:40