美文网首页
jquery选择器$(this).find('input[typ

jquery选择器$(this).find('input[typ

作者: 毛毛v5 | 来源:发表于2019-06-17 09:57 被阅读0次
$(this).find('input[type="submit"]:not(.cancel), button').click(function (){});

Basically it is looking for elements located within this that has the following requirements

is an input
has type = submit
does not have a class of cancel
OR

is a button
$(this)                   // within this jQuery object
  .find('                 // find all elements
    input[type="submit"]  // that are input tags of type "submit"
    :not(.cancel)         // and do not have the class "cancel"
    ,                     // or
    button                // are button elements
  ')
  .click(                 // and for each of these, to their click event
    function (){}         // bind this function
  );

相关文章

  • jquery选择器$(this).find('input[typ

  • jquery选择器书目录

    jquery选择器-基本选择器 jquery选择器-层级选择器 jquery选择器-基本过滤选择器 jquery选...

  • JQUERY一

    jQuery 元素选择器 jQuery 属性选择器 jQuery CSS 选择器 jQuery 事件 jQuery...

  • jQuser有选择器

    jQuery基本选择器 jQuery过滤选择器 jQuery层级选择器 jQuery筛选选择器(方法)

  • Linux服务器文件操作常用命令集合与实例

    查找文件操作(find 指令):find [PATH] [option] [action]find ./ -typ...

  • 选择器

    jQuery 元素选择器 jQuery 属性选择器 jQuery CSS 选择器

  • jQuery 基础

    jQuery jQuery操作DOM jQuery的选择器 基本选择器 层级选择器 过滤选择器 jQuery操作样...

  • jQuery

    jQuery jQuery操作DOM jQuery的选择器 基本选择器 层级选择器 过滤选择器 jQuery操作样...

  • jQuery选择器

    一、jQuery常用选择器 二、jQuery选择器优势 三、jQuery常用基本选择器 四、jQuery常用层次选...

  • JQuery基础知识

    jQuery操作DOM jQuery的选择器 基本选择器 层级选择器 过滤选择器 jQuery操作样式 css操作...

网友评论

      本文标题:jquery选择器$(this).find('input[typ

      本文链接:https://www.haomeiwen.com/subject/ftpofctx.html