Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created July 13, 2016 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/6b169da96b68a15ec141d97f54cf055c to your computer and use it in GitHub Desktop.
Save ryanlid/6b169da96b68a15ec141d97f54cf055c to your computer and use it in GitHub Desktop.
jQuery 在新窗口打开外部链接
<script>
var myURL = location.protocol + '//' + location.hostname;
$('a[href^= "http://"]').not('[href^= "'+myURL+'"]').attr('target','_blank');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment