实现浏览器复制功能
chrome 63.0.3239.108
IE 11.0.9600.17843IS
Opera 49.0.2725.64 (PGO)
360极速浏览器 9.0.1.154
firefox 56.0.2
1 $('.copy').click(function(e){
2 var sn = 123
3 if( $('#SelectArea').length === 0 ){
4 $('body').append('<div id="SeletArea" style="position: absolute;left: -9999px;"></div>');
5 }
6 $('#SeletArea').html('<input type="text" value="'+ sn +'">');
7 $('#SeletArea input').select();
8 document.execCommand("Copy",false); // 执行浏览器复制命令
9 })