在数组.inArray()中查找值

时间:2012-10-09 15:28:22

标签: jquery arrays

我正在使用.inArray()来检查我的数组是否为'0'值,然后是return false;或者如果存在零则会中断该函数。

这是我目前正在使用的代码:

$(document).ready(function() {

    $('#calc').click(function(e) {

        var drop = $(".drop"),
            c = [],
            g = [];

        //Push values into an array.
        drop.each(function() {
            var $t = $(this),
                cals = $t.val(),
                option = $(':selected', this),
                gly = parseFloat(option.attr('rel'));
            g.push(gly * 2);
            c.push(cals * 2);
        });

        var inthere = jQuery.inArray('0', c) > -1;

        //don't calculate if array is empty
        if (c.length === 0) {
            return false;
        }
        //don't calculate with a '0' value in array
        if (inthere == true) {
            return false;
        }

        //shouldn't display if you haven't added a dropdown OR if the dropdown stayed on the "Default" option
        alert('Passed');
    });

    $('#add').click(function() {
        $('#contain').append('<select class="drop"><option value="" rel="" data-default="true">Default</option><option value="1" rel="2">Option 1</option><option value="3" rel="4">Option 2</option></select>');
    });

});​

当用户将option保留为“默认”选项时,传递给c的值应为0.由于某种原因,代码将通过,除非我没有添加下拉...

如果c数组中有'0',如何阻止代码继续?

这是fiddle

1 个答案:

答案 0 :(得分:2)

数组没有匹配'0'的字符串,其数字与0匹配。

http://jsfiddle.net/DUs8e/1/

var inthere = jQuery.inArray(0, c) > -1;