首页 > Web开发 > 详细

禁止选择或禁止复制网页数据

时间:2021-04-02 10:57:32      阅读:22      评论:0      收藏:0      [点我收藏+]

禁止选择或禁止复制

    /** 屏蔽选中网页内容 */
	document.onselectstart = function () { return false; }

	/** 屏蔽复制网页内容 */
	document.body.oncopy = function () { return false; }

	/** 屏蔽剪切网页内容 */
	document.body.oncut = function () { return false; }

	/** 屏蔽向网页粘贴内容 */
	document.body.onpaste = function () { return false; }

	/** 屏蔽拷屏(不停的清空剪贴板) */
	// window.setInterval(‘window.clipboardData("Text", "")‘, 100);

	/**
	 58. * 屏蔽查看源文件( <body onload=clear()> )
	 59.*/
	function clear() {
		var source = document.body.firstChild.data;
		document.open();
		document.close();
		document.body.innerHTML = source;
	}

破解友商网站禁止效果

有些网站需要临时复制一下数据,只需要在控制台执行一下脚本

document.onselectstart = function () { return true; } ;document.body.oncopy = function () { return true; }; document.body.oncut = function () { return true; };document.body.onpaste = function () { return true; }

禁止选择或禁止复制网页数据

原文:https://www.cnblogs.com/frank-zhang/p/14609310.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!