function click() {
alert('您好,为防止盗用本站图片等信息的恶劣行为再次发生,本站右键已禁用!如给您带来不便,请谅解!') }
function click1() {
if (event.button==2) {alert('禁止右键点击!') }}
function CtrlKeyDown(){
if (event.ctrlKey) {alert('不当的拷贝将损害您的系统!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;