﻿// JScript 文件

function click() {
if (event.button==2) { 
alert('禁止鼠标右键！')
}
}
document.onmousedown=click


