获取在IE7 / IE8中使用的尾随逗号(在JavaScript中)

时间:2013-10-18 12:49:01

标签: javascript internet-explorer-7

你在这里找到了很多关于逗号的信息: Are trailing commas in arrays and objects part of the spec?

这是关于“就在那里”的逗号。

[
        { title: "..", display: function() { return ".."; } },
        { title: "..", display: function() { return ".."; } },
        { title: "..", display: function() { return ".."; } }, // <--right there
    ]

我现在的问题是,第三方工具使用尾随逗号生成此列表,但我无法访问此工具的源代码。我

<body>
my stuff
<!-- the folloging div with the javascript comes from the 3rd party -->
<div class="item"><script type="text/javascript">
$(document).ready(function() {


    $.supersized({

        // Functionality
        slide_interval          :   8000,       // Length between transitions
        transition              :   1,          // 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
        transition_speed        :   400,        // Speed of transition
        fit_always              :   0,          //Prevents the image from being cropped by locking it at 100% width.
        min_width               :   600,        //min-width of images
        random                  :   0,      //random img
        vertical_center         :   1,          //vertical alignment

        // Components                           
        slide_links             :   'false',    // Individual links for each slide (Options: false, 'number', 'name', 'blank')
        slides                  :   [           // Slideshow Images

    {image : 'image1.jpg', otherstuff: 'blah', moreotherstuff: 'lorem'},

    {image : 'image2.jpg', otherstuff: 'blub', moreotherstuff: 'ipsum'},


                                    ]
    });
});
</script></div>

现在我问我有没有办法在IE7 / IE8中使用它。

我现在看到的唯一方式(因为我无法编辑第三方而无法在服务器上访问它)是: - 在没有该div的情况下提供特殊输出 - 通过ajax请求正常方 - 解析所有内容,获取此div,删除最后一个逗号并执行javascript

这真的不是我想要的方式。还有其他方法可以解决这个问题吗?

2 个答案:

答案 0 :(得分:3)

IE7 / IE8将报告1个元素更大的数组长度,除非你修剪这些数组。

如果您知道从第三方接受数据的所有JS方法,您可以为它们编写包装器。例如:

var removeEmpty = function(array){
    var i, result = [];

    for (i = 0; i < array.length; ++i){
        if ( typeof array[i] != 'undefined' ){
            result.push(array[i]);
        }
    }

    return result;
};

$.supersized = (function() {
    var origMethod = $.supersized;

    return function(config) {
        config.slides = removeEmpty(config.slides); // get rid of undefined data in array
        return origMethod.call(this, config); // call original method
    };
}());

答案 1 :(得分:1)

不,没有办法让这些尾随逗号在IE中运行。它根本无法完成;它是浏览器的javascript解析器的基本组成部分。

这是一个非常着名的问题,这意味着您的第三方工具非常明显有缺陷,并且显然没有经过适当的测试。我不知道你从哪里得到它,但如果你付钱,如果我是你,我会大声抱怨。

如果你真的无法在源头处理问题,那么剩下的唯一选择是在生成的代码进入IE之前修复它。这说起来容易做起来难。根据生成的代码的复杂性,如果它简单且可预测,您可以为它编写正则表达式,但如果它生成的代码复杂或复杂程度不同,我怀疑您可能遇到问题那个想法。