How to check entered value is exist or not using Jquery or javascript

Mahendra Pumbhadiya

I have one textbox and one button and on button I have written below code. problem is suppose first I have entered in textbox 10 than its worked but when another time I enter 10 than also it prints value is not in array. so pls help me whats the issue...

jQuery(document).ready(function()
{
 jQuery("#mybutton").live('click',function () 
 {
    var sel_fam_rel=jQuery("#my_textbox").val();
    var ids = [];
    code =sel_fam_rel;
    if($.inArray(code,ids) >= 0)
    {
      alert("Value is in array");
    }
    else
    {
      alert("Value is not in array");
      ids.push(code);
    }
  });
});

Jai

This line:

if($.inArray(code,ids) >= 0)

should be changed to:

if($.inArray(code,ids) != -1)

and put your ids var outside of click.

Try the snippet below.

var ids = [];
jQuery("button").on('click', function() {
  var sel_fam_rel = jQuery("#my_textbox").val();

  code = sel_fam_rel;
  if ($.inArray(code, ids) != -1) {
    alert("Value is in array");
  } else {
    alert("Value is not in array");
    ids.push(code);
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type='text' id='my_textbox'>
<button>check</button>

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to check if XML value exist?

分類Dev

How to check if a value/property exist in JSON data

分類Dev

How to check if a value/property exist in JSON data

分類Dev

Check if value entered has digits in it

分類Dev

How to check if a ResultSet of an AJAX call using JQuery has value

分類Dev

How to dynamically check if an element has mulitple class using jquery or javascript

分類Dev

How can I check whether a option already exist in select by JQuery

分類Dev

How to check if one element is exist under a form in jQuery

分類Dev

Grid View check the value is exist?

分類Dev

How to check whether the file exist in HDFS location, using oozie?

分類Dev

How to check if multiple conditions strings exist in the csv using BufferedReader?

分類Dev

check if key exist in object javascript

分類Dev

How to find if specific key with value exist in array jQuery?

分類Dev

How to check whether a string was already entered?

分類Dev

Unix How to check if a specific word is entered in as an argument

分類Dev

How to check if the user has entered a single letter?

分類Dev

Copying to clipboard textbox value using jQuery/JavaScript

分類Dev

How to stop cloning text entered inside <Td> element while using .clone() in jquery

分類Dev

In ElasticSearch how to check if a field exists that it equals some value, or that the field doesn't exist?

分類Dev

How to hide and show div if url is set to specific value using jquery/javascript?

分類Dev

How to check for a certain text value with jQuery.validate()

分類Dev

How to get a table cell value using jQuery?

分類Dev

How to get a table cell value using jQuery?

分類Dev

How to check for initial spaces in the text entered in edit text android

分類Dev

How to check if a Javascript object contains an array as a value for an attribute?

分類Dev

How to check if values in an array is exists in an array in jquery/javascript

分類Dev

how can i check if event exist on calendar

分類Dev

How to check whether file exist or not in given URL?

分類Dev

how to check if date and string exist in text file

Related 関連記事

  1. 1

    How to check if XML value exist?

  2. 2

    How to check if a value/property exist in JSON data

  3. 3

    How to check if a value/property exist in JSON data

  4. 4

    Check if value entered has digits in it

  5. 5

    How to check if a ResultSet of an AJAX call using JQuery has value

  6. 6

    How to dynamically check if an element has mulitple class using jquery or javascript

  7. 7

    How can I check whether a option already exist in select by JQuery

  8. 8

    How to check if one element is exist under a form in jQuery

  9. 9

    Grid View check the value is exist?

  10. 10

    How to check whether the file exist in HDFS location, using oozie?

  11. 11

    How to check if multiple conditions strings exist in the csv using BufferedReader?

  12. 12

    check if key exist in object javascript

  13. 13

    How to find if specific key with value exist in array jQuery?

  14. 14

    How to check whether a string was already entered?

  15. 15

    Unix How to check if a specific word is entered in as an argument

  16. 16

    How to check if the user has entered a single letter?

  17. 17

    Copying to clipboard textbox value using jQuery/JavaScript

  18. 18

    How to stop cloning text entered inside <Td> element while using .clone() in jquery

  19. 19

    In ElasticSearch how to check if a field exists that it equals some value, or that the field doesn't exist?

  20. 20

    How to hide and show div if url is set to specific value using jquery/javascript?

  21. 21

    How to check for a certain text value with jQuery.validate()

  22. 22

    How to get a table cell value using jQuery?

  23. 23

    How to get a table cell value using jQuery?

  24. 24

    How to check for initial spaces in the text entered in edit text android

  25. 25

    How to check if a Javascript object contains an array as a value for an attribute?

  26. 26

    How to check if values in an array is exists in an array in jquery/javascript

  27. 27

    how can i check if event exist on calendar

  28. 28

    How to check whether file exist or not in given URL?

  29. 29

    how to check if date and string exist in text file

ホットタグ

アーカイブ