BigCoke233 / noter

📝 A static blog writting system based on GitHub issues.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jQuery 监听 copy 事件

BigCoke233 opened this issue · comments

这样就能给随便复制黏贴的人一个警告了

$(document).ready(function() {  
    $("body").bind({  
        copy : function(){  
          alert("复制成功!若使用请注明原作者及原地址!");
        }
    });  
}); 

未完待续