最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

arrays - Simple javascript string problem in ie6 and ie7 - Stack Overflow

programmeradmin0浏览0评论

I have a very simple function that takes a list of ma separated (x,y) points and imports them into a graph. I have FF, Chrome and IE8 installed. I use IETester to test for IE6 and IE7.

// Import Data
this.Import = function(data) {
    alert("Data in: "+data);
    var d;

    // Make sure the first and the last are start/ending parenthesis
    if ( (data[0] != '(') || (data[data.length-1] != ')') ) {
        alert("After if: "+data[0]+" "+data[data.length-1]);
        return false;
    }
    ...

In Chrome, FF and IE8, I don't see the "After if:" alert. In IE6 and IE7, I see the following two alerts: Data in: (52,16),(100,90) After if: undefined undefined

The "Data in" alert matches in all browsers.

Any ideas?

I have a very simple function that takes a list of ma separated (x,y) points and imports them into a graph. I have FF, Chrome and IE8 installed. I use IETester to test for IE6 and IE7.

// Import Data
this.Import = function(data) {
    alert("Data in: "+data);
    var d;

    // Make sure the first and the last are start/ending parenthesis
    if ( (data[0] != '(') || (data[data.length-1] != ')') ) {
        alert("After if: "+data[0]+" "+data[data.length-1]);
        return false;
    }
    ...

In Chrome, FF and IE8, I don't see the "After if:" alert. In IE6 and IE7, I see the following two alerts: Data in: (52,16),(100,90) After if: undefined undefined

The "Data in" alert matches in all browsers.

Any ideas?

Share Improve this question edited Apr 27, 2010 at 23:22 Jeff Lamb asked Mar 26, 2010 at 19:14 Jeff LambJeff Lamb 5,8754 gold badges39 silver badges57 bronze badges 1
  • is data a string or an array? – Jake McGraw Commented Mar 26, 2010 at 19:19
Add a ment  | 

1 Answer 1

Reset to default 17

Figured it out. Have to use .charAt() instead of treating a string as an array in ie6 and 7.

发布评论

评论列表(0)

  1. 暂无评论