千里之行,始于足下

专注技术

BlogJava 首页 新随笔 联系 聚合 管理
  4 Posts :: 1 Stories :: 0 Comments :: 0 Trackbacks
// 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 on 2012-08-09 23:30 千里之行,始于足下 阅读(1795) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: