/**
* @author admin
*/
function MouseDown(nsEvent){
var theEvent = nsEvent ? nsEvent : window.event;
var locString = "x = " + theEvent.screenX + "/ny = " + theEvent.screenY;
var clientString = "x = " + theEvent.clientX + "/ny = " + theEvent.clientY;
var eventType = theEvent.type;
document.writeln(locString + "<br />"); //这句如果写到第七行之前,第七行就不能用了
document.writeln(clientString + "<br />");
document.writeln(location + "<br />");
document.writeln(eventType + "<br />");
// document.writeln(window.event.type + "<br />");
// document.writeln(theEvent.type + "<br />"); //这样写firefox可以通过,但是IE就不行,提示permission denyed
}
function KeyDown(nsEvent) {
var theEvent = nsEvent ? nsEvent : window.event;
var keyValue = theEvent.keyCode;
document.writeln("You press the key value of:" + keyValue + "<br />");
document.writeln(theEvent.type + "<br />");
}
document.onmousedown = MouseDown;
document.onkeydown = KeyDown;