how to enable search btn when all 3 inputs have value?

7537247

I have first, last inputs and country select, I have disabled search btn by default, how do I enable the search btn when all 3 inputs have value in them otherwise, disable the search btn? I have tried to use "and" in js, which is "&&", but it didn't work. Any help will be appreciated.

[jsfiddle][1]

[1]: http://jsfiddle.net/x9syr1v1/3/
artm

See http://jsfiddle.net/x9syr1v1/4/

Use change function otherwise you'll have tyo foucs out of drop down and use text() for the inputs:

$('.first, .last, .country').change(function () {
    if ($('.first').text() == "" && $('.last').text() == "" 
        && $('.country').val() == "") {
        $('.search').attr('disabled','disabled');
    } else {
        $('.search').removeAttr('disabled');
    }
});

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类常见问题

In jQuery, how do I get the value of a radio button when they all have the same name?

来自分类Dev

How to write contains query in SQLite fts3 fulltext search

来自分类Dev

How to implement fuzzy search with SQLite's FTS3?

来自分类Dev

Bootstrap 3-如何在特定设备上隐藏input-group-btn

来自分类Dev

How to select all elements that don't have a class or id?

来自分类Dev

How to auto format textbox inputs

来自分类Dev

I have a lot of netcdf files, how would I use xarray to upload all the files into one python notebook?

来自分类Dev

Bootstrap 3 btn-group宽度

来自分类Dev

Activate check and reset button after complete all inputs

来自分类Dev

Bootstrap 3-如何在折叠的导航栏中正确显示按钮(btn-navbar)?

来自分类Dev

Enable CORS for all APIs with Spring MVC

来自分类Dev

How can i enable true ToolStripMenuItem in form1 when backgroundworker completed his operation in a new class?

来自分类Dev

How to change the value of this field in all the records of this MySql table?

来自分类Dev

Bootstrap 3-同一btn组中的多个活动按钮

来自分类Dev

当所有3个输入都具有值时,如何启用搜索btn?

来自分类Dev

Javascript find max number from 3 inputs

来自分类Dev

How to enable Inplace Editing for this code..so i need that value to update in Update.php file

来自分类Dev

Bootstrap 3-带下拉动画的3x btn-group全部打开

来自分类Dev

btn-lg类不起作用,使用bootstrap3

来自分类Dev

How to return documents where two fields have same value

来自分类Dev

AngularJS submit button active when all input have a data

来自分类Dev

How Can I implement policyId and enable Monetization YouTube v3 with .NET

来自分类Dev

How to enable Unity again?

来自分类Dev

Determining when all nested React components have finished loading their data

来自分类Dev

twitter-bootstrap 3失败支持btn btn-mini

来自分类Dev

How to search for special characters in Sublime Text 3

来自分类Dev

As3 Pause Btn无法运作

来自分类Dev

将as3 btn代码转换为Javascript

来自分类Dev

How do I change the boot menu when I have no display?

Related 相关文章

  1. 1

    In jQuery, how do I get the value of a radio button when they all have the same name?

  2. 2

    How to write contains query in SQLite fts3 fulltext search

  3. 3

    How to implement fuzzy search with SQLite's FTS3?

  4. 4

    Bootstrap 3-如何在特定设备上隐藏input-group-btn

  5. 5

    How to select all elements that don't have a class or id?

  6. 6

    How to auto format textbox inputs

  7. 7

    I have a lot of netcdf files, how would I use xarray to upload all the files into one python notebook?

  8. 8

    Bootstrap 3 btn-group宽度

  9. 9

    Activate check and reset button after complete all inputs

  10. 10

    Bootstrap 3-如何在折叠的导航栏中正确显示按钮(btn-navbar)?

  11. 11

    Enable CORS for all APIs with Spring MVC

  12. 12

    How can i enable true ToolStripMenuItem in form1 when backgroundworker completed his operation in a new class?

  13. 13

    How to change the value of this field in all the records of this MySql table?

  14. 14

    Bootstrap 3-同一btn组中的多个活动按钮

  15. 15

    当所有3个输入都具有值时,如何启用搜索btn?

  16. 16

    Javascript find max number from 3 inputs

  17. 17

    How to enable Inplace Editing for this code..so i need that value to update in Update.php file

  18. 18

    Bootstrap 3-带下拉动画的3x btn-group全部打开

  19. 19

    btn-lg类不起作用,使用bootstrap3

  20. 20

    How to return documents where two fields have same value

  21. 21

    AngularJS submit button active when all input have a data

  22. 22

    How Can I implement policyId and enable Monetization YouTube v3 with .NET

  23. 23

    How to enable Unity again?

  24. 24

    Determining when all nested React components have finished loading their data

  25. 25

    twitter-bootstrap 3失败支持btn btn-mini

  26. 26

    How to search for special characters in Sublime Text 3

  27. 27

    As3 Pause Btn无法运作

  28. 28

    将as3 btn代码转换为Javascript

  29. 29

    How do I change the boot menu when I have no display?

热门标签

归档