不知道从什么时候开始,剪切板总是被复制一些代码,烦死了。强迫症受不了,于是百度了一个脚本,来源于知乎。据说百度是带头搞这玩意的...
//剪贴板守护
if(/y\.qq\.com|\.bilibili\.|baijiahao\.baidu\.com|mbd\.baidu\.|tieba\.baidu\.com|zx\.sina|haokan\.|taobao\./.test(location.hostname)
&& typeof document.execCommand === 'function' && /\[native/.test(String(document.execCommand)))
{ document.execCommand = function () { return true; }; document.title = ' ' + document.title;}