js 禁止複製粘貼全選

// 取消右鍵菜單
document.oncontextmenu = function(e){
var t = e || window.event;
var elm = t.target || t.srcElement;
return false;
}
// 取消文章全選
$('body').on("selectstart",function(){
return false
})
// 取消快捷鍵
document.onkeydown = function(){
if( event.ctrlKey ){
return false;
}
if ( event.altKey ){
return false;
}
if ( event.shiftKey ){
return false;
}
}get

相關文章
相關標籤/搜索