Skip to content

Instantly share code, notes, and snippets.

@jay16
Forked from azone/open-in-blank.js
Last active August 29, 2015 13:59
Show Gist options
  • Save jay16/10440562 to your computer and use it in GitHub Desktop.
Save jay16/10440562 to your computer and use it in GitHub Desktop.
source/_includes/custom/head.html中添加js代码:
<script>
function addBlankTargetForLinks () {
$('a[href^="http"]').each(function(){
$(this).attr('target', '_blank');
});
}
$(document).bind('DOMNodeInserted', function(event) {
addBlankTargetForLinks();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment