标签:打开 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>
标签:打开 lan this 渲染 ext javascrip his htm markdown
原文地址:https://www.cnblogs.com/xmsx/p/9716431.html