`
xjtusaber
  • 浏览: 54811 次
  • 性别: Icon_minigender_1
  • 来自: 龙黄
社区版块
存档分类
最新评论
文章列表
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 = " 建 ...
[setTimeout] setTimeout(表达式,延时时间) 在执行时,是在载入后延迟指定时间后,去执行一次表达式,记住,次数是一次 用setTimeout实现的自动变化显示随机数的效果: <html> <head> <script> window.onload=sett; function sett() { document.body.innerHTML=Math.random(); setTimeout("sett()",500); } </script> </head> <body> < ...
环境: resin3.0.22+JDK 1.5     启动命令:httpd.exe   -Xdebug 这样,用Eclipse 保存文件,resin不需要重启就可以动态加载刚生成的class文件了。
JS控制表单输入只能为数字:onpropertychange='if(/[^\-?\d*\.?\d{0,2}]/.test(this.value)) this.value=this.value.replace(/[^\-?\d*\.?\d{0,2}]/,"")'  
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 ...
Global site tag (gtag.js) - Google Analytics