2025年01月22日 建站教程
如何禁止用户复制你的内容,方法其实很简单就是禁止文字被选中,利用document.onselectstart实行监听一行代码就解决了!
document.onselectstart
禁止文字被选中:
document.onselectstart = function(){return false;};
本文链接:http://so.lmcjl.com/news/21832/