Skip to content

Instantly share code, notes, and snippets.

@nicholasxjy
Created February 15, 2019 06:03
Show Gist options
  • Save nicholasxjy/f9a871627bc6fdddc38ac0766a07799b to your computer and use it in GitHub Desktop.
Save nicholasxjy/f9a871627bc6fdddc38ac0766a07799b to your computer and use it in GitHub Desktop.
copy append text
const appendCopyrightToLivenews = e => {
const crText = `\r\n\r\n链接:${
location.origin
}\r\n非商业转载请注明出处。`
e.preventDefault()
e.clipboardData.setData('Text', window.getSelection() + crText)
}
document.addEventListener('copy', appendCopyrightToLivenews)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment