Ghost的所有链接都在当前窗口打开,然而咱比较习惯外站链接在新选项卡打开
不过Google到了一个办法,用 JS 实现出站连接在新窗口打开
所以修改Ghost主题的index.js文件就可以啦(文件一般在使用的主题文件夹\assets\js\index.js)
在开头的
jQuery(document).ready(function($){
下面加上
$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])")
.addClass("external")
.attr("target","_blank");
就可以了
以上。