千里之行,始于足下

          專注技術

          BlogJava 首頁 新隨筆 聯系 聚合 管理
            4 Posts :: 1 Stories :: 0 Comments :: 0 Trackbacks

          2012年8月9日 #

          HTTP Request header  http://www.cnblogs.com/lexus/archive/2012/02/21/2360944.html 
           HTTP協議詳解http://www.cnblogs.com/TankXiao/archive/2012/02/13/2342672.html 
          posted @ 2012-08-15 11:40 千里之行,始于足下 閱讀(199) | 評論 (0)編輯 收藏

          // Add this code anywhere you want (after jQuery has been loaded). 
          //
           Edit it to add your own expressions. 
          jQuery.extend(jQuery.expr[':'], { 
              /////////////////////////////////////////////////////////// 
              // form elements that are submitable based on these criteria 
              //    element is not disabled 
              //    element has a selected or checked attribute 
              //    element is a textarea 
              //    element is an input of type text or hidden 
              // 
              //  @usage: $(':submitable') 
              //  @usage: $('#myForm :submitable') 
              submitable: function(a) { 
                  return !a.disabled&&(a.selected||a.checked||(a.nodeName.toUpperCase()=='TEXTAREA')||(a.nodeName.toUpperCase()=='INPUT'&&(a.type=='text'||a.type=='hidden'||a.type=='password'))); 
              }, 
              /////////////////////////////////////////////////////////// 
              // elements that have a type attribute not equal to hidden 
              //    use if you want to select all input elements that are not hidden 
              //  @usage: $('input:nothidden') 
              nothidden: function(a) { 
                  return a.type&&a.type!='hidden'; 
              } 
          }) 
               
          posted @ 2012-08-09 23:30 千里之行,始于足下 閱讀(1799) | 評論 (0)編輯 收藏

          jquery 三段論:給錢($)—找人(選擇器)—做事(回調函數)
          posted @ 2012-08-09 23:23 千里之行,始于足下 閱讀(231) | 評論 (0)編輯 收藏

          主站蜘蛛池模板: 桐乡市| 兰考县| 达孜县| 尚义县| 石柱| 贺州市| 稷山县| 阿图什市| 青铜峡市| 改则县| 静安区| 邢台县| 汉中市| 淳安县| 工布江达县| 德州市| 兰州市| 金堂县| 邹平县| 淳安县| 济阳县| 封丘县| 额济纳旗| 庄河市| 广德县| 林口县| 根河市| 分宜县| 南江县| 修文县| 蒙城县| 响水县| 东海县| 闽清县| 都兰县| 天峨县| 饶河县| 德钦县| 古田县| 民乐县| 铜陵市|