IE 8中的json stringify给出了运行时错误,不支持Object属性或方法

时间:2012-07-26 13:39:20

标签: json internet-explorer-8 stringify

/ *问题描述 - 我正在使用json stringify方法将javascript数组转换为json表示法中的字符串。但是我收到一条错误消息,指出'对象属性或方法不受支持'在线     hidden.value = JSON.stringify(jsonObj);     这应该适用于IE8中支持stringify。请告知

Full code below  */    
function getgridvalue() {

        var exportLicenseId;
        var bolGrossQuantity;
        var bolNetQuantity;
        var totalBolGrossQty =0 ;
        var totalBolNetQty =0;
        var jsonObj = []; //declare array
            var netQtyTextBoxValue = Number(document.getElementById("<%= txtNetQty.ClientID %>").value);
        var atLeastOneChecked = false;

        var gridview = document.getElementById("<%= ExporterGrid.ClientID %>"); //Grab a reference to the Grid

        for (i = 1; i < gridview.rows.length; i++) //Iterate through the rows
        {

            if (gridview.rows[i].cells[0].getElementsByTagName("input")[0] != null && gridview.rows[i].cells[0].getElementsByTagName("input")[0].type == "checkbox")
            {

                if (gridview.rows[i].cells[0].getElementsByTagName("input")[0].checked)
                {

                    atLeastOneChecked = true;
                    exportLicenseId = gridview.rows[i].cells[8].getElementsByTagName("input")[0].value;
                    bolNetQuantity = gridview.rows[i].cells[5].getElementsByTagName("input")[0].value;

                    if (bolNetQuantity == "") {
                        alert('<%= NetQuantityMandatory %>');
                        return false;
                        }
                    if (!isNumber(bolNetQuantity)) {
                        alert('<%= NetQuantityNumber %>');
                        return false;
                    }

                    totalBolNetQty += Number(bolNetQuantity);
                    jsonObj.push({ ExportLicenseId: Number(exportLicenseId),  BolNetQuantity: Number(bolNetQuantity) });

                }

            }
        }
if (gridview.rows.length > 2 && !atLeastOneChecked)
{
    alert('<%= SelectMsg %>');
                        return false;
                    }



if (totalBolNetQty != 0 && netQtyTextBoxValue != totalBolNetQty)
            {
                alert('<%= NetQuantitySum %>');
                return false;
            }

        var hidden = document.getElementById('HTMLHiddenField');
//        if (!this.JSON) {
//            this.JSON = {};
//        }
        var JSON = JSON || {};
        if (hidden != null) {

            hidden.value = JSON.stringify(jsonObj);

        }

    }

1 个答案:

答案 0 :(得分:1)

使用F12 Developer Tools检查浏览器模式。 JSON对象存在,但在IE7模式下没有方法。使用json2库作为后备。