码迷,mamicode.com
首页 > 其他好文 > 详细

markdown 超链接打开新窗口

时间:2018-09-28 01:39:12      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:打开   lan   this   渲染   ext   javascrip   his   htm   markdown   

markdown 渲染之后,超链接是在本窗口打开的,影响阅读体验。

怎么解决?

为渲染后的 html 加上如下脚本:

<script type="text/javascript">
    $(document).ready(function() {
        $('a[href^="http"]').each(function() {
            $(this).attr('target', '_blank');
        });
    });
</script>

markdown 超链接打开新窗口

标签:打开   lan   this   渲染   ext   javascrip   his   htm   markdown   

原文地址:https://www.cnblogs.com/xmsx/p/9716431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!