javascript 控制左右键盘
<html>
<head>
<script language="javascript">
function MyClick()
{
if(event.button == 1)
{
alert("您好");
}
else if(event.button == 2)
{
alert("禁止右键");
setTimeout("MyClose();",120000);
&nbs
相关文档:
function checkImgAddr(url){
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("post",url,false);
xmlhttp.send();
if(xmlhttp.readyState==4){
if(xmlhttp.status==404){
return "File Not Exist.";
}else if(xmlhttp.status == 200){
re ......
var currItem = listbox.options[currIndex];
var prevItem = listbox.options[currIndex - 1];
&n ......