项目要求按下回车时执行登录,由于IE和火狐等浏览器事件对象模型不同,几经考虑后采用该对象处理,废话不说看代码
function keyPress(){
var pressE = arguments.callee.caller.arguments[0];
if(pressE && pressE.keyCode==13){
alert('登录!');
}
}
原理如下:
...
分类:
其他好文 时间:
2015-04-03 19:27:46
阅读次数:
145
html页面
点击上传
function fileSelect(){
var e=arguments.callee.caller.arguments[0]||window.event;
var files=e.target.files;//要上传的文件列表对象
var reg = /image\/.*/i; ...
分类:
Web程序 时间:
2015-04-01 15:30:32
阅读次数:
160
event对象IE 中可以直接使用 event 对象,而 FF 中则不可以,解决方法之一如下:var theEvent = window.event || arguments.callee.caller.arguments[0];第二种是将 event 作为参数来传递:function xxx(e)...
分类:
Web程序 时间:
2015-03-15 00:28:37
阅读次数:
151
Persistence provider caller does not implement the EJB3 spec correctly. 实体bean发布出现的问题,将persistence.xml改为
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://...
分类:
其他好文 时间:
2015-03-13 16:45:21
阅读次数:
157
使用MACS1.4 进行peak calling的时候发现一个比较奇怪的问题:我的某些文件无法被MACS1.4 进行peak calling,出现如下的信息:Traceback (most recent call last): File "/usr/local/bin/macs14", line ....
分类:
系统相关 时间:
2015-03-12 09:47:42
阅读次数:
274
一种是erl启动的时候加参数doudizhu.config[ {doudizhu,[ {listen_port, 7000}, {node_caller_prefix,"ruby"}, {pgsql_ip,"127.0.0.1"...
分类:
其他好文 时间:
2015-03-06 20:31:03
阅读次数:
118
Java中的回调函数学习博客分类:J2SEJavaJ#一般来说分为以下几步:声明回调函数的统一接口interface A,包含方法callback();在调用类caller内将该接口设置为私有成员private A XXX;在caller内提供实现A接口的public方法(将外部该接口的实现类通过形...
分类:
编程语言 时间:
2015-02-12 17:41:10
阅读次数:
154
注:这篇文章原文:http://www.jb51.net/article/30883.htm 自己作为学习,重新写写。 一、写在前面的话 前端javascript编程还只是略懂皮毛,DOM知道一点,jquey会用一点点,深知夯实基础,了解前端的系统的知识对于web开发(自己主要做的是PHP...
分类:
移动开发 时间:
2015-02-10 18:09:31
阅读次数:
181
msdn:
The _ReturnAddress intrinsic
provides the address of the instruction in the calling function that will be executed after control returns to the caller.
_ReturnAddress 返回当前调用函数返回的地址,即函数吓一跳指...
分类:
其他好文 时间:
2015-01-24 22:50:28
阅读次数:
305