﻿function click() {
	if (event.button == 2 || event.button == 3) {
		alert('对不起，您的右键已经被锁定！');
	}
}
document.onmousedown = click
