markdown 超链接打开新窗口
Posted xmsx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 超链接打开新窗口相关的知识,希望对你有一定的参考价值。
markdown 渲染之后,超链接是在本窗口打开的,影响阅读体验。
怎么解决?
为渲染后的 html 加上如下脚本:
<script type="text/javascript">
$(document).ready(function() {
$('a[href^="http"]').each(function() {
$(this).attr('target', '_blank');
});
});
</script>
以上是关于markdown 超链接打开新窗口的主要内容,如果未能解决你的问题,请参考以下文章