1. 程式人生 > >Jquery校驗陣列中是否存在不同的值

Jquery校驗陣列中是否存在不同的值

用的$.inArray
var arr = [ 10, 25, 3, 0, -3 ];

w( $.inArray( 25, arr ) ); // 1
w( $.inArray( -3, arr ) ); // 4
w( $.inArray( 10, arr ) ); // 0

// 陣列中沒有99
w( $.inArray( 99, arr ) ); // -1
// 陣列中有數字10,但是沒有字串"10"
w( $.inArray( "10", arr ) ); //

以下為程式碼

           var Codes=new Array();
            var ids=new Array();
            var Code;
            var boolean=true;
            //存在某個條件不同的資料時,不能進行下一步
            $('input[name=reqOrder]').each(function() {//遍歷所有的複選框
                if ($(this)[0].checked) {//只校驗選中的複選框
                  if(Codes.length>0&&$.inArray($(this)[0].value,Codes)==-1){
                      boolean=false;
                      var dialog = Common.alertDialog({
                          title: '錯誤提示',
                          content: '不同協議的訂單不能同時提交!',
                          okValue: '確 定',
                          quickClose:true,
                          ok: function () {

                          },

                      });
                      dialog.showModal();
      }else{//如果資料都相同繼續新增
                     Code=$(this)[0].value;
                      Codes.push($(this)[0].value);
                      ids.push($(this).attr("label"))
      }
                }
            })
if(boolean){
                window.location.href="#/pages/checkbiz/pu_statements_ordercarddetail";
                Common.store.set("agreementCode",agreementCode);
                Common.store.set("orderids",orderids);
}