- 浏览: 54811 次
- 性别:
- 来自: 龙黄
最新评论
-
waixin:
fun1("我A在大汉DEF", 7); ...
java实现中英文混合字符截取方法 -
ruvuoai:
好家伙,我正在找呢
resin3.0.22 更新class文件后自动重启动的解决方案。 -
hydrogen:
程序不完全正确,如输入“我ABC汉DEF”,5 时
java实现中英文混合字符截取方法 -
xinshaoye:
总结得不错~~ 谢谢!!
Velocity脚本摘要 -
sg552:
判断空:#if($var) 就可以了。
Velocity脚本摘要
文章列表
javascript获取屏幕位置 网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.offsetHeight (包括边线的高)网页正文全文宽: document.body.scrollWidth网页正文全文高: document.body.scrollHeight网页被卷去的高: document.body.scrollTop网页被卷去的左: document.body.scro ...
1: 注解的实体 @Entity@Table(name="category")@DiscriminatorValue("category")public class Category implements Serializable { private static final long serialVersionUID = 1L; private int id; private String name; @Id @GeneratedValue(strategy = GenerationType.AUTO) public int getId() { ...
<script language="javascript">window.onbeforeunload = function(){var n = window.event.screenX - window.screenLeft;var b = n > document.documentElement.scrollWidth-20;if(b && window.event.clientY < 0 || window.event.altKey){ postTime(); window.event.returnValue = " 建 ...
- 2007-11-26 14:08
- 浏览 1738
- 评论(0)
[setTimeout] setTimeout(表达式,延时时间) 在执行时,是在载入后延迟指定时间后,去执行一次表达式,记住,次数是一次 用setTimeout实现的自动变化显示随机数的效果: <html> <head> <script> window.onload=sett; function sett() { document.body.innerHTML=Math.random(); setTimeout("sett()",500); } </script> </head> <body> < ...
- 2007-11-26 09:03
- 浏览 3636
- 评论(0)
环境: resin3.0.22+JDK 1.5 启动命令:httpd.exe -Xdebug 这样,用Eclipse 保存文件,resin不需要重启就可以动态加载刚生成的class文件了。
- 2007-10-30 17:15
- 浏览 1845
- 评论(1)
JS控制表单输入只能为数字:onpropertychange='if(/[^\-?\d*\.?\d{0,2}]/.test(this.value)) this.value=this.value.replace(/[^\-?\d*\.?\d{0,2}]/,"")'
- 2007-10-22 20:52
- 浏览 762
- 评论(0)
Velocity判断空值方法:依据:$username与$!username的区别,当找不到username的时候,$username返回字符串"$username",而$!username返回空字符串"" 所以:#set($!username=='') 可以判断字符串是否为空 以下为Velocity脚本摘要1、声明:#set ($var=XXX)左边可以是以下的内容Variable reference String literal Property reference Method reference Number literal #set ($i=1 ...