`
文章列表
//判断身份证号是否是15位或者18位 var re = /(^\d{15}$)|(^\d{17}([0-9]|X)$)/; if (!re.test(idcard.value)) { alert("身份证号格式不正确!"); idcard.focus(); return false; } //判断邮箱格式是否正确 var re = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((\.[a-zA-Z0-9_-]{2,3}){1,2})$/; if(!re.te ...

收集的一些好的

    博客分类:
  • web
http://www.iteye.com/topic/573179

Exception集锦

    博客分类:
  • web
1.Could not open the editor: Resource is out of sync with the file system 这个错误发生在我native2ascii.exe translate之后,再次打开那个资源文件的时候发生的一个错误 2."file search" has encountered a problem. Problems encountered during text search 在用eclipse 搜索的时候发生的一个错误。工具的错误

__工具__

用的到得工具, 待补充................ 听说可以听出电脑的性别,呵呵,回去试试 新建一vbs文件,将如下代码放入其中,双击,可以听出电脑的性别,神奇 CreateObject("SAPI.SpVoice").Speak "chien shu iuan ku min"
见方法: public static void change (int x, int y) { x = x + y; y = x - y; x = x - y; //两种都可以 x = x*y; y = x/y; x = x/y; }
在很多情况下,我们使用Hibernate在已经建立好数据库的基础上。在oracle中,如果已经建立好的数据库中使用了sequence ,则可以按照下面的步骤把它引入到Hibernate中:        1、在oracle 首先创建sequence        create sequence seq_ ...
手工从cmd命令行启动:C:\Documents and Settings\wangnc>emctl start dbconsole Environment variable ORACLE_SID not defined. Please define it. 设置Oracle_sid环境变量: C:\Documents and Settings\wangnc>set oracle_sid=orcl C:\Documents and Settings\wangnc>emctl start dbconsole OC4J Configuration issue. C:\ora ...
select * from(select a.*, rownum rn from (select * from table_name) a where rownum <= 5) where rn >= 2 需要注意的是,上面的分页语句,大的数字必须在前面,小的必须在后面,否则查询不了数据,至于为什么,我也不知道 ^_^ select * from(select a.*, rownum rn from (select * from table_name) a)where rn between 2 and 4

关于DWR

    博客分类:
  • JS
今天突然要用到DWR实现局部刷新,可是一想,原来做过可是现在一点印象都没故写此篇(一个简单的例子): 首先导入dwr.jar包,再写一个dwr.xml文件跟web.xml文件同级目录:(虽然dwr.xml文件没有像dtd或者shema这样的规范,但是有个潜在的规范)格式如下: <?xml version="1.0" encoding="UTF-8"?> <dwr> <allow> <!-- 生成一个class对象. --> <create creator="new&quo ...
<html> <head> <title>JS操作文本文件</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> </head> <body> <script> var arr = new Array(); arr[0] = [0,"name0","value0"]; arr ...
组合sping和struts action注入的时候,发生了 org.springframework.beans.NotWritablePropertyException: Invalid property...错误,这是我用属性注入时发生的错误,后来改用构造注入就没这个问题,那为什么会出现这种情况,分析了一下,查了一些网络资料后,发现别人这么说: 1、据本人所知,第一个字母是小写,而第二个字母是大写的属性,它的get和set方法名字不是get+属性第一个字母大写。例如iTestDao的set方法不是setITestDao,可能是setItestDao。所以不建议使用第一个字母是小写,而第 ...
1建立数据表 create table Test_Increase(            userid number(10) primary key,  /*主键,自动增加*/            username varchar2(20)            ); 2创建自动增长序列 CREATE SEQUENCE TestIncrease_Sequence INCREMENT BY 1   -- 每次加几个       START WITH 1     -- 从1开始计数       NOMAXVALUE       -- 不设置最大值       NOCYCL ...
以CVS(图文详解)为例 首先:
Event代表事件状态,如事件发生的元素,键盘状态,鼠标位置和鼠标按钮状态。一旦事件发生,便会生成Event对象,如单击一个按钮,浏览器的内存中就产生相应的 event对象。 event 对象只在事件发生的过程中才有效。 event的某些属性只对特定的事件有意义。比如,fromElement 和 toElement 属性只对 onmouseover 和 onmouseout 事件有意义。 【event属性】 : altKey, button, cancelBubble, clientX, clientY, ctrlKey, fromElement, keyCode, offsetX, off ...
在Myeclipse8.5目录下的configuration/config.ini文件里 把 osgi.instance.area.default=@user.home/Workspaces/MyEclipse 8.5 改成 osgi.instance.area.default=F:\WebSpace 重启Myeclipse8.5 要想设置MyEclipse的工作空间的选择对话框 Window -> Preferences -> General -> Startup and Shuodown -> Prompt for workspace  on start ...
Global site tag (gtag.js) - Google Analytics