LoginSignup
0
0

More than 5 years have passed since last update.

クリップボードにコピー

Posted at
%span{data: {name: 'ほげ'}, onclick: 'copySomething(this)'} facebook
function copySomething(name){
  var selection = window.getSelection(), range = document.createRange();
  range.selectNodeContents(name);
  selection.removeAllRanges();
  selection.addRange(range);
  document.execCommand('copy');
}

DATA属性が持ってる「ほげ」をクリップボードに格納したいが挫折w
とりあえずここまで!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0