`
文章列表
1,javascript 正则判断是否为整数     var r = /^\+?[1-9][0-9]*$/;  //正整数    alert(r.test(num));   2,
参照:http://blog.csdn.net/update_158/article/details/6409757       下午完成了一个模块功能的开发,本来测试好的jquery表单验证怎么也出不来了。打开firebug,看到控制台里赫然提示:$(document).ready is not a function。感觉怪怪的,其它页面也是写着 $(document).ready(function(){ 啊,怎么偏偏在这个页面出问题了呢。仔细想想,调试完成还是一两点的 事情。在这之后换过项目里使用的WEB编辑器,印象中好像导入了prototype的包,难道是它的问题。。。。。 哈哈 ...
<html> <body> <a href="javascript:void(null)" onClick="setHome('http://www.jb51.net');">设为首页</a> - <a href="javascript:addBookmark('脚本之家','http://www.jb51.net')">加入收藏</a> <script type="text/javascript"> func ...
1:Resource is out of sync with the file system解决办法  在eclipse或mycelipse中,启动run on server时或查看项目文件时报错: Resource is out of sync with the file system: '/Test_1_Struts_Spring_Hibernate/WebContent/WEB-INF/.struts-config.xml.strutside'. 这是文件系统不同步的问题,是因为在eclipse或mycelipse之外对工程中的resource进行修改引起的(或者是由不同的系统间对文 ...
Refer to : http://blog.csdn.net/liuyifeng_510/article/details/7081490   今天在安装软件的时候出现了Package has no installation candidate的问题,如: # apt-get install <packagename> Reading package lists... Done Building dependency tree... Done Package aptitude is not available, but is referred to by anothe ...
Setting up a CVS server on Linux, accessing via Windows over SSH:   Refer to : http://www.drydeadfish.co.uk/cvs/    
Refer to: http://www.albeesonline.com/blog/2008/08/27/changing-the-default-port-in-websphere-application-server/ Changing the default port in WebSphere Application Server Sometimes we may need to change the default port of a WebSphere Application Server installation as a security precaution or fo ...
关键字: ant build.xml Ant的概念 可能有些读者并不连接什么是Ant以及入可使用它,但只要使用通过Linux系统得读者,应该知道make这个命令。当编译Linux内核及一些软件的源程序时,经常要用这个命令。Make命令其实就是一个项目管 ...
最多使用的应为encodeURIComponent,它是将中文、韩文等特殊字符转换成utf-8格式的url编码,所以如果给后台传递参数需要使用encodeURIComponent时需要后台解码对utf-8支持(form中的编码方式和当前页面编码方式相同)escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-Z encodeURI不编码字符有82个:!,#,$,&, ',(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-Z encodeURIComponent不编码字符有71个:!,    ',(,),*,-,.,_,~,0-9,a- ...
  以下内容转载自--http://blog.csdn.net/miqi770/article/details/2109805    tomcat详细部署之我见 版本:tomcat5.5.17 要求:使用http://localhost时,可以直接访问自己开发的项目(项目名比如:xm) 准备动作(注意): 当你使用以下方法一或方法二之前一定要做好准备动作。 原因:在Tomcat 5.5/server/webapps目录下会有tomcat自带的两个项目(manager,host-manager), 当tomcat安装好后,开启服务,就可以直接访问了,比如使用http://localh ...
MySQL在Linux下数据库名、表名、列名、别名大小写规则是这样的:   1、数据库名与表名是严格区分大小写的;   2、表的别名是严格区分大小写的;   3、列名与列的别名在所有的情况下均是忽略大小写的;   4、变量名也是严格区分大小写的;   MySQL在Windows下都不区分大小写。   所以在不同操作系统中为了能使程序和数据库都能正常运行,最好的办法是在设计的时候都转为小写,但是如果在设计的时候已经规范化大小写了,那么在Windows环境下只要对数据库的配置做下改动就行了,具体操作如下:   在MySQL的配置文件中my.ini [mysqld] 中增加一行    ...
android:layout_width只能设置fill_parent(横向填充整个屏幕)或wrap_content(横向填充控件本身大小)android:width设置具体控件的横向大小 单位是像素   FrameLayout,  LinearLayout ,  AbsoluteLayout,  RelativeLayout, TableLayout.   ----- FrameLayout-----   Demo1: activity_main.xml ok <FrameLayout xmlns:android="http://schemas.android ...
<?xml version='1.0' encoding='utf-8'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to ...
    android:layout_width只能设置fill_parent(横向填充整个屏幕)或wrap_content(横向填充控件本身大小)android:width设置具体控件的横向大小 单位是像素 -------------
今天无意中碰到这个问题,后来意识到环境变量没有配,我的电脑-属性-高级-环境变量,新增下面三个环境变量,启动startup.bat,OK。 JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09(就是你jdk安装的路径) CLASSPATH=. ;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;(.;一定不能少,因为它代表当前路径) path=.;%JAVA_HOME%\bin 
Global site tag (gtag.js) - Google Analytics