JS&HTML
文章平均质量分 66
zzlnet
这个作者很懒,什么都没留下…
展开
-
常用的CSS命名规则
常用的CSS命名规则  头:header  内容:content/container  原创 2009-04-13 10:27:36 · 85 阅读 · 0 评论 -
JS复选框checkbox选中与否弹出窗口提示确认
<!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>&l2009-06-18 21:50:58 · 1956 阅读 · 0 评论 -
216种Web安全颜色
<!--Content Start-->#000000#000033#000066#000099#0000CC#0000FF#003300#003333#003366#003399#0033CC#0033FF#006600#006633#006666#006699#0066CC...原创 2009-12-29 14:55:20 · 339 阅读 · 0 评论 -
CSS常用网站布局实例
单行一列以下是引用片段:body { margin: 0px; padding: 0px; text-align: center; } #content { margin-left:auto; margin-right:auto; width: 400px; width: 370px; } 两行一列以下是引用片段:body { margin: 0px; padding: 0px...原创 2009-12-29 15:24:05 · 107 阅读 · 0 评论 -
几个经典的css技巧
使用 line-height 垂直居中line-height:24px; 使用固定宽度的容器并且需要一行垂直居中时,使用 line-height 即可(高度与父层容器一致)清除容器浮动#main { overflow:hidden; } 不让链接折行a { white-space:nowrap; } 上面的设定就能避免链接...原创 2009-12-29 15:33:06 · 116 阅读 · 0 评论 -
JS日期控件
官方推荐优点如下: ============== 更人性化,更全面的功能 ============== 强大的日期范围限制功能 ============== 自定义事件和丰富的API库 ============== 多语言支持和自定义皮肤支持 ============== 跨无限级框架显示和自动选择显示位置 官方demo和文档 http://www.my97.net/dp/demo/index.h...原创 2010-01-15 10:13:15 · 88 阅读 · 0 评论 -
960网页栅格化总结
几个术语和一个公式一个标准的栅格系统,包括以下部分: 将flowline的总宽度标记为W, column的宽度标记为c, gutter宽度标记为g, margin的宽度标记为m, column的个数标记为N, 我们可以得到以下公式:W = c * N + g * (N - 1) + 2 * m一般来说,Gutter的宽度是Margin的两倍,上面的公式可以简化为:W =...2010-04-13 10:20:57 · 365 阅读 · 0 评论 -
HTML页面的垂直滚动条不见了~
HTML页面的垂直滚动条不见了~找了半天也没有找到原因~~最后在body标签加了一个style="overflow-y:scroll;"问题解决 <body style="overflow-y:scroll;">原创 2011-05-23 12:39:53 · 1399 阅读 · 0 评论 -
javaScritp递归求n的阶乘
<script type="text/javascript"> function factorial(n){ if(typeof(n)=="number"){ if(n==1){ return 1; } else{ return n*factorial(n-1); } }else{ alert("你输入的参数类...2010-03-20 11:58:38 · 194 阅读 · 0 评论 -
css兼容IE8
微软在IE8提供三种解析页面的模式 IE8 Standard Modes :默认的最标准的模式,严格按照W3C相关规定 IE7 Standards Modes :IE7现在用的解析网页的模式,开起机关是在<head>中加入 <meta http-equiv="X-UA-Compatible" content="IE=7"> Quirks Modes :IE5用的解析网...原创 2009-05-20 09:40:51 · 139 阅读 · 0 评论 -
仿土豆网首页效果, 焦点图片切换效果
<!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><原创 2009-04-19 14:28:23 · 131 阅读 · 0 评论 -
js图片切换
<!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><原创 2009-04-19 14:29:44 · 90 阅读 · 0 评论 -
元素操作:可以准确定位的两个不同风格的移动层
风格一<script>z_index= 1;mouseDown= false;divLeft= 0;divTop= 0;function onMove(obj){ obj.style.left= window.event.clientX-divLeft; obj.style.top= window.event.client...原创 2009-04-19 14:32:38 · 106 阅读 · 0 评论 -
层拖动代码
<!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><原创 2009-04-19 14:33:38 · 87 阅读 · 0 评论 -
CSS中cursor鼠标形状属性列表
光标类型 CSS 把你的光标放到相应文字上查看效果 要注意光标的实际效果依赖于用户的系统设置,与你在这里看到的效果并不一定一致。 十字准心 cursor: crosshair; 手 cursor: pointer; cursor: hand;写两个是为了照顾IE5,它只认hand。 等待/沙漏 cursor: wait; 帮助 cursor: help; 无法释放 cursor: n...原创 2009-04-19 14:34:07 · 151 阅读 · 0 评论 -
javascript 多个层拖动效果
<style><!--div {background: #cccccc;position: absolute;width: 50;height: 50;}--></style><div onmousedown="oMove(this)"></div><div onmousedown="原创 2009-04-19 14:35:11 · 111 阅读 · 0 评论 -
DIV图层拖动原理与实现
这几天做基于Web页面的套打程序,用到了图层的拖动,在网上找了些资料,来说明原理及实现代码,总结如下: 原理图: 说明下: O(0,0),表示窗口内容区左上角坐标; T(x1,y1),表示拖动前,层的左上角顶点坐标; M(xm,ym),M=Mouse,此点表示,正准备拖动瞬间,鼠标与DIV接触点的坐标; M'(x'm,y'm),表示拖动后放手前,鼠标与DIV接触点的坐标; T'(x?,y?),拖...原创 2009-04-19 14:36:14 · 295 阅读 · 0 评论 -
无条件引回根目录下登陆页面
<SCRIPT language=javascript> top.location.replace("/index.jsp");//引回根目录下登陆页面。 </SCRIPT>2009-04-19 14:42:21 · 103 阅读 · 0 评论 -
当xmlhttp.onreadystatechange时,给handleStateChange传递参数
xmlhttp.onreadystatechange = handleStateChange; handleStateChange不允许有参数,当强行输入参数后,xmlRequest.readyState==1过后就没有反应了。可以使用以后变通xmlhttp.onreadystatechange = function (){handleStateChange(参数)};...原创 2010-11-20 23:07:00 · 636 阅读 · 0 评论