Skip to content

Instantly share code, notes, and snippets.

@wangwen1220
Last active January 2, 2016 13:29
Show Gist options
  • Select an option

  • Save wangwen1220/8310572 to your computer and use it in GitHub Desktop.

Select an option

Save wangwen1220/8310572 to your computer and use it in GitHub Desktop.
JS: jQuery 在新窗口打开链接 | target _blank
// jQuery 在新窗口打开链接
$('a[rel='external']').click(function() {
this.target = "_blank";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment