码迷,mamicode.com
首页 > Web开发 > 详细

js hashmap 和 push

时间:2014-09-10 14:00:00      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:blog   io   java   ar   div   cti   log   on   c   

            var hashMap1 = {};
            $(".productFieldTxt").each(function () {
                if ($(this).val() in hashMap1) {
                    isOk = false;
                    alert("Product Field [" + $(this).val() + "] appears repeatedly.");
                    return false;
                }
                else {
                    hashMap1[$(this).val()] = $(this).val();
                }
            });

    var arrayCO = new Array();
    var CECustomizeOption = new Object();
    CECustomizeOption.ElementId = 0;
    CECustomizeOption.ElementText = $(this).text();
    CECustomizeOption.ElementValue = $(this).val();
    arrayCO.push(CECustomizeOption);
    $(‘#<%=hf_ElementsJson.ClientID %>‘).val(JSON.stringify(arrayCO));//json2序列化,服务器端jss反序列化

  

js hashmap 和 push

标签:blog   io   java   ar   div   cti   log   on   c   

原文地址:http://www.cnblogs.com/laozuan/p/3964193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!