`
caiceclb
  • 浏览: 241921 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
社区版块
存档分类
最新评论
文章列表
随意随意。。。只能感叹。。   群里有人问问题   风雪 15:04:03 在jsp页面的换行怎么换? 例如在out.println("connecting")换行输出out.println("Successful!");中间该加什么代码? 永远的15:04:35 <br> 永远的 15:05:13 jsp中不要用out对象 风雪 15:05:32 <br>不是在html中的吗 永远的 15:06:13 jsp 不就是一个页面吗,用来显示内容而已 所有的输出都不要使用out对象 ...
原文:http://www.pragprog.com/articles/tell-dont-ask Alec Sharp, in the recent book Smalltalk by Example [SHARP], points up a very valuable lesson in few words: 引用Procedural code gets information then makes decisions. Object-oriented code tells objects to do things.— Alec Sharp That is, you should end ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <meta http-equiv=" ...
群里有人问的问题: 1、function([1,2,3,4], 2), 得结果12,13,14,23,24,34 2、function([1,2,3,4], 3), 得结果123,124,234   从这两个看出规律,就是给一个数组和number为参数,返回最终的排列组合。   偶算法方面实在蛋白,但是对递归非常喜欢。下班回家尝试些了一下,代码很白,不过答案还真出来了。   <script type="text/javascript"> <!-- var loop = function(arry, n){ if(arry. ...
先拿淘宝看这样的例子:   正常状态:     下拉后状态:     淘宝这个三角是用s标签实现的。我一同事试图使用a,a:hover来模拟还原这个效果,同时我也写了个代码如下     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/ ...
此篇记录发出前,记忆中没有看过相关bug的描述。   开发中遇到,对此问题做了简单的代码还原:   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new ...
写了有一年多了,还是拿出来,以备后用     package cn.tofishes.util.image; import java.awt.Image; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import com.sun.image.codec.jpeg.ImageFormatException; import com.sun.image.codec.jpeg.JPEG ...
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; c ...
<div class="relative"> <p class="absolute"></p> </div> <div class="relative"> <p class="absolute"></p> </div>   类似结构,如果绝对定位的p出现没按照z-index值大小进行遮盖的情况 ,那么就应该在父元素div上找问题。   定位也是有作用域的,好比js,谁被谁遮盖液得 ...
感觉自己这个布局蛮简单有效的,第二次去用的时候还没想到这样写,去翻以前的才发现,还是记录一下吧。   效果:       代码:     <div id="top-bar"> <p class="r-f"> <a class="home" href="">首页</a> <a href="">社区</a> <a href="" ...
    <object height="205px" width="900px" data="flash地址" type="application/x-shockwave-flash"> <param value="flash地址" name="movie" /> <param value="high" name="quality" /> <param value ...
插件Home:http://www.gmarwaha.com/jquery/jcarousellite/index.php   很棒的图片滚动插件,加入国人常用的习惯:鼠标悬停的效果。   html结构要求:     <div id="handler"> <ul> <li><img /></li> …… </ul> </div>   div,ul都会自动加入合适的css,而且是相对定位。基本不需要额外css控制,当然 ...
有时布局时ie6有点不同寻常的表现,莫名奇妙,ie7是好好的。   今天虽然不是第一次发现,但是今天要记住了。因为用的是Eclipse做开发,用Eclipse新建的XHTML声明的静态文件,头部是有一个“<?xml version="1.0" encoding="UTF-8" ?>”的声明的,但是这个东东ie6就有些小感冒了。   今天的例子是对img加个效果。     img { padding: 3px; border: 1px solid #ccc; }   在ie6下padding不出来,就是因为xml的标签声明。。。 ...
布局的时候貌似发现ie对百分比的宽度计算有点问题,Google之。果然。。。   http://www.liehuo.net/a/200908/237911.html 写道 IE与firefox对百分比宽度解析存在细小差异,假设一个DIV宽度800px。里面有8个字DIV等宽依次浮动,可以这么写。 以下为引用的内容: .out{width:777px;} .out .in{width:12.5%; height:20px; float:left;}   html代码: 以下为引用的内容: <div class="out"> <div cl ...
  /* paginate follow */ var args = { sliceTag: "dl", sliceSize: 10, pageNumShow: 'p.pageNum', curr: "curr" }; /* 分页内容的集合 */ var $slice; /* 总数 */ var count; /* 页码挂载点 */ var $show = $(args.pageNumShow); /* 总页数 */ var numCount ...
Global site tag (gtag.js) - Google Analytics