快速业务通道

Javascript初学者实例教程(2):event对象和事件

作者 佚名技术 来源 网页制作 浏览 发布时间 2012-03-07

上一篇介绍了Javascript初学者实例教程(1):简单交互

实例二、

     本实例主要介绍了event对象和事件的简单应用。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>mouse</title>
<script language="javascript">
function catchEvent()
{
var eventSrcID = event.srcElement.id;
var eventtype = event.type;
alert(eventSrcID+"捕获到了"+eventtype+"事件");
}
function GetPosition()
{
 var posX = event.clientX;
 var posY = event.clientY;
 window.status = "鼠标的位置是("+posX+","+posY+")";
}
function GetKey()
{
textfield.value=event.keyCode+","+String.fromCharCode(event.keyCode);
}
</script>
</head>
<body onMouseMove="GetPosition();" >
鼠标在文本框中按下:<input type="text" name="textfield" onMouseDown="alert(''鼠标在文本框中按下'')"><br/>
键盘按下:<input type="text" name="textfield" onKeyDown="alert(''键盘按下'');"><br/>
event对象:<br/>
<input type="text" name="textfield" id="text" onClick="catchEvent();"><br/>
<input type="submit" name="Submit" value="提交" id="button" onClick="catchEvent();"><br/>
</body>
</html>

效果演示:

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号