目标=" _blank"不在(blogspot)blogger.com

时间:2016-06-14 22:03:02

标签: url anchor blogger

我在blog.sot.in上的博客中使用了以下代码,因此链接应该在新标签页中打开。

click <a href="http://amauryablogs.blogspot.in/2016/06/invisible-network-description.html" target="_blank">here</a>

可以通过查看page的源代码来验证相同内容,请参阅第一段中的链接。但链接在同一页面中打开。这不是浏览器的问题,因为我可以使用this tutorial来演示在新标签页中打开链接。有什么问题?

1 个答案:

答案 0 :(得分:0)

根据这个source,你应该:

  • 转到您的博主仪表板
  • 选择您的博客&gt;&gt;模板
  • 在编辑前备份您的模板
  • 点击“修改HTML”
  • 在HTML
  • 中查找</head>标记
  • </head>标记
  • 上方添加以下代码
<script type="text/javascript">
    $(document).ready(function() {
        $("a[href^='http://']").each(
            function(){
                if(this.href.indexOf(location.hostname) == -1) {
                    $(this).attr('target', '_blank');
                }
        });
        $("a[href^='https://']").each(
            function(){
                if(this.href.indexOf(location.hostname) == -1) {
                    $(this).attr('target', '_blank');
                }
            }
        });
    });
</script>
  • 保存模板。