千里之行,始于足下

专注技术

BlogJava 首页 新随笔 联系 聚合 管理
  4 Posts :: 1 Stories :: 0 Comments :: 0 Trackbacks

2011年11月13日 #

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 千里之行,始于足下 阅读(185) | 评论 (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 千里之行,始于足下 阅读(1791) | 评论 (0)编辑 收藏

jquery 三段论:给钱($)—找人(选择器)—做事(回调函数)
posted @ 2012-08-09 23:23 千里之行,始于足下 阅读(217) | 评论 (0)编辑 收藏

为工作而烦恼。。。
未来
已不再遥远。
不再年轻
不再青春
努力吧!
posted @ 2011-11-13 13:38 千里之行,始于足下 阅读(196) | 评论 (0)编辑 收藏