即7个javascript问题

时间:2012-10-29 05:42:18

标签: javascript cross-browser

我有以下代码,它工作IE8,FF和其他浏览器,但不适用于IE7 检查我发现formatIncludes[i]无法正常工作,任何想法在IE7和任何解决方案中都有错误

var formatIncludes = valueToSet.replace(/[^\D]/g, '');
    for(var i=formatIncludes.length-1; i >= 0 ; i--){
        if(valueToSet && valueToSet != null && valueToSet.endsWith(formatIncludes[i])){
            valueToSet = valueToSet.substr(0, valueToSet.length - 1);
        }else{
            break;
        }
    }

String.prototype.endsWith = function(suffix) {
    return (this.indexOf(suffix, this.length - suffix.length) != -1);
};

formatIncludes可以包含任何字符串值

IE7上的

错误

Message: 'length' is null or not an object
Line: 352
Char: 2
Code: 0
URI: http://localhost:7001/HHSPortal/framework/skeletons/hhsa/js/util.js

1 个答案:

答案 0 :(得分:3)

似乎用[i]索引字符串不起作用?更一致/更正确的解决方案是使用.charAt(i)

推理可以在这些中找到:

string.charAt(x) or string[x]?

JavaScript cross-browser: Is it safe to treat a string as array?