實(shí)現(xiàn)頁(yè)面不被復(fù)制
一:直接在body添加屬性
<body oncontextmenu="return false" onselectstart="return false" oncopy="return false">
oncontextmenu:這個(gè)是點(diǎn)擊鼠標(biāo)右鍵是否顯示面板
onselectstart:鼠標(biāo)能否選中文本
oncopy:用戶執(zhí)行copy時(shí)候操作
二:js實(shí)現(xiàn)
document.oncontextmenu = function(){
return false;
}document.onkeydown = function(){
if (event.ctrlKey && window.event.keyCode==67){
return false;
}
}document.body.oncopy = function (){
return false;
}//不建議連選中文本都不行document.onselectstart = function(){
//return false;}
會(huì)員登錄
賬號(hào)登錄還沒(méi)有賬號(hào)?立即注冊(cè)