12345678910111213141516171819202122 |
- document.addEventListener("copy",function(e){
- if(window.getSelection(0).toString()){
- swal({title:"复制成功",
- text:"微信公众号【晴园】提示:撰文不易,若转载请务必保留原文链接,谢谢合作!!",
- type:"success",
- showCancelButton:false,
- showConfirmButton:false,
- buttons: false,
- timer: 2200,
- })
- }
- else{
- swal({title:"复制提示",
- text:"微信公众号【晴园】提示:啊噢...你没还没选择文字呢!!",
- type:"error",
- showCancelButton:false,
- showConfirmButton:false,
- buttons: false,
- timer: 1200,
- })
- }
- });
|