我在blog.sot.in上的博客中使用了以下代码,因此链接应该在新标签页中打开。
click <a href="http://amauryablogs.blogspot.in/2016/06/invisible-network-description.html" target="_blank">here</a>
可以通过查看page的源代码来验证相同内容,请参阅第一段中的链接。但链接在同一页面中打开。这不是浏览器的问题,因为我可以使用this tutorial来演示在新标签页中打开链接。有什么问题?
答案 0 :(得分:0)
根据这个source,你应该:
</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>