`
文章列表

敏捷开发

以人为中心 持续集成 迭代开发 结对编程 TDD测试驱动开发 晨会 迭代回顾会议(上个迭代的优点,缺陷,改进方略) 迭代开工会(划分模块责任人,划分小组,分析需求,出需求文档) 需求澄清会议(讨论需求文档) 状态墙
/* 读取属性---获取第一个input标签的name属性的属性值 */ $(document).ready(function(){ $("#cId").click(function (){ alert($("input").attr("name")); }); }); /* 修改属性---修改第2个input标签的文本值为test */ $(document).ready(function(){ $("#cId2").click(function (){ $("in ...

基本滤镜选择器

:first                   匹配第一个元素 :last                     匹配最后一个元素 :enen                      从匹配的元素中去序数为偶数的元素 :odd                       从匹配的元素中去序数为奇数的元素? :eq(index)             从匹配的元素取第index个元素     :gt(index)              从匹配的元素中取序数大于index的元素     :lt(index)              从匹配的元素中取序数小于index的元素     ...

CSS选择器

/* 类选择器 */ .cId {color:red;} /* ID选择器 */ #clickme {font-size:19px;} /* 标签选择器 */ input {border:1px red solid;} /* 后代选择器 <div id="dId"> <div>ff</div> <ul> <li>aa</li> <li>bb</li> <li>cc</li> </ul> </div>*/ di ...

链接外部样式

<link type="text/css" rel="stylesheet" href="jq.css"></link> http://guozi.iteye.com/blog/136810

jQuery入门

http://www.iteye.com/topic/156028

框_架

<html> <head> <title>框架</title> <script type="text/javascript"> </script> </head> <frameset rows="25%,*,10%"> <frame src="top.html" noresize="noresize">         <frame src="center.html& ...

式_样_用_常

.mainDiv{width:150px;height:220px;} .div{width:150px;height:18px;margin-top:2px;background-color:red;font-size:14px;} .ddiv{background-color:green;} .ydiv{margin-left:15px;display:none;}
<html>   <head> <meta http-equiv="Page-Enter" content="revealTrans(duration=5, transition=1)">     <meta http-equiv="Page-Exit" content="revealTrans(duration=5, transition=0)">     <title>Google Maps JavaScript API Example</t ...

组_数_S_J

    博客分类:
  • S_J
<html> <head> <title></title> <script type="text/javascript"> function jsIndex(){ //创建一个空数组 var a = new Array(); a.push('A');//添加元素 var le = a.length;//返回数组的长度 var aa = a[0];//根据下标获取数组元素 //alert(a);//打印数组 //定义一个数组,给定初始值 ...

点_节_形_树_S_J

    博客分类:
  • S_J
http://wangyalei.iteye.com/blog/744383

层_级_展_示

    博客分类:
  • S_J
<html> <head> <title>采购询价</title> <style type="text/css"> .ti{background-color:green;width:80px;text-align:center} .t2{font-size:12px;} .dz{border:1px solid red;width:500px;height:200px;margin-left:340px;} .d1{width:150px;height:150px;float:lef ...

签_标_L_M_T_H

http://zyh2007000zyh.iteye.com/blog/1101762

巧_技_小_S_J

    博客分类:
  • S_J
http://bageer707.iteye.com/blog/128125
//修改日期信息 myDate.setDate(myDate.getDate+10);//修改日期信息,其他信息亦可灵活修改 //查询日期偏移量 var d1 = new Date(); var d2 = new Date(); d2.setDate(d2.getDate()+5); //var dd = daysBetween(d1,d2);//返回天数 //var ih = d2.getTimezoneOffset(d1); //返回分钟数 //checkDate() 只允许"mm-dd-yyyy"或&qu ...
Global site tag (gtag.js) - Google Analytics