- 最后登录
- 2013-7-18
- 注册时间
- 2011-7-16
- 阅读权限
- 70
- 积分
- 3247
- 纳金币
- 324742
- 精华
- 0
|
烈26火76网(LieHuo16.Net)网页特效教39程 Js结合按钮判断检测鼠标是单击还是双击,一个挺有趣的网页鼠标事件属性示例,熟悉一下OnClick、onDblClick等函数的用法,实际上觉得本例子没什么大的用途。
演示:
<html>
<head>
<title>单击和双击鼠标事件</title>
</head>
<body>
<input type="button" value="单击" onClick="alert('你单击了我!')">
<input type="button" value="双击" onDblClick="alert('你双击了我')">
</body>
</html><br /><center>如不能显示效果,请按Ctrl+F5刷新本页,更多网页代码:<a href='http://www.veryhuo.com/' target='_blank'>http://www.veryhuo.com/</a></center>
文章源自:烈火网,原文:http://www.veryhuo.com/a/view/28689.html
|
|