码迷,mamicode.com
首页 > 编程语言 > 详细

javascript

时间:2017-07-27 18:15:46      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:.com   timeout   事件   turn   禁用   alt   bsp   http   char   

1、interval  间隔事件,var timer=setInterval(a,5000); 代表5秒钟执行一下a 事件,若是想停止,则clearInterval(timer)便可

2、setTimeout(“b”,3000)  out为小写,代表3秒钟后执行b事件,时间若是b(),需要双引号,若是b则不需要引号, clearTimeout

3、document.onkeydown=function(e){

  var event=e(火狐需要传递事件)||window.event ie不需要传值,直接获取

  var keyCode=e.which(火狐)||event.keyCode  ie|| ||e.charCod  这样的写法支持绝大多数浏览器

  }

  ctrlKey  altKey  shiftKey

  http://www.cnblogs.com/shipengzhi/articles/2035010.html   键码列表

  document.oncontextmenu=function(){return false};禁用右键

javascript

标签:.com   timeout   事件   turn   禁用   alt   bsp   http   char   

原文地址:http://www.cnblogs.com/happy0120/p/7245888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!