Skip to content

Instantly share code, notes, and snippets.

@crusj
Created July 12, 2019 03:19
Show Gist options
  • Save crusj/4c0cccc4bef859672391bb6e0d0d4fab to your computer and use it in GitHub Desktop.
Save crusj/4c0cccc4bef859672391bb6e0d0d4fab to your computer and use it in GitHub Desktop.
浏览器复制内容到剪切板
var temp = $("<input type='text' value='" + mediaId + "'/>");
temp.appendTo('body');
temp.select();//选中元素
if(document.execCommand('copy')){
layer.msg('media_id已复制到剪切板!');
}else{
layer.msg('复制到剪切板失败!');
}
temp.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment