
JSP
做一个有理想的码农
QQ&VX:695166350
展开
-
colorbox的常见问题
发现colorbox官方网站的troubleshoot写的比较好,转载一下。1,flash覆盖colorbox:This is not a ColorBox specific problem, by default Flash will overlay any HTML content. This can be prevented by setting the ‘wmode’ param转载 2012-08-16 15:54:10 · 1582 阅读 · 0 评论 -
css里面图片路径问题
/** 在CSS文件里,有时要用到background,即加一个背景图片,一般在做按钮样式时会经常用到。 css中加背景图片根据图片及css文件的相对位置分一下几种类型: 1.同包下:background : url(aaa.gif); 2.不同包: 在这种情况下有2中方法可以设置,一种是使用绝对路径,即http://www.iteye.com/aaa.gif原创 2012-08-16 15:59:51 · 5733 阅读 · 0 评论 -
图片上传查看
原创 2012-10-30 17:09:31 · 596 阅读 · 0 评论 -
正负数正则表达式
function check(){ //Reg = /^(^-?\d+$)$/ //输入的必须是整数(正负整数) Reg = /^(^\d+$)$/ //输入的必须是正整数 alert(Reg.test(document.all.txt1.value))}原创 2012-11-26 16:12:01 · 5251 阅读 · 0 评论 -
实现拖动table标题实现改变td的大小
拖动列宽的表格 <!-- .bg td{ font-size:12px; text-align:left; line-height:15px; height:20px; } .bg td.tit{ background-color:#e2e2e2; height:17px; text-align:center; line-原创 2013-04-15 17:12:51 · 2040 阅读 · 0 评论