首页 > 代码库 > javascript

javascript

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