admin管理员组

文章数量:1341749

I'm trying to get a stored number in the device's memory and parse it to integer using the method Integer.parseInt.

win:function(){
    this.reset();
    if(Integer.parseInt(window.localStorage.getItem("curLevel"))<this.levelNo)
    {
        window.localStorage.setItem("curLevel", this.levelNo+1);
        renderAllLevels();
    }
    $.mobile.pageContainer.pagecontainer("change", "#winlevel");
}

But when the function win is called I recieve the error Uncaught ReferenceError: Integer is not defined.

I used Integer.parseInt in other lines in my project and it worked without any error.

What is the potential error in using it here?

I'm trying to get a stored number in the device's memory and parse it to integer using the method Integer.parseInt.

win:function(){
    this.reset();
    if(Integer.parseInt(window.localStorage.getItem("curLevel"))<this.levelNo)
    {
        window.localStorage.setItem("curLevel", this.levelNo+1);
        renderAllLevels();
    }
    $.mobile.pageContainer.pagecontainer("change", "#winlevel");
}

But when the function win is called I recieve the error Uncaught ReferenceError: Integer is not defined.

I used Integer.parseInt in other lines in my project and it worked without any error.

What is the potential error in using it here?

Share Improve this question edited Jan 13, 2016 at 20:03 Chris Martin 30.8k12 gold badges80 silver badges140 bronze badges asked Jan 13, 2016 at 20:00 AbozanonaAbozanona 2,2951 gold badge29 silver badges66 bronze badges 2
  • 3 parseInt is a global function. There's no global object called Integer. If it wasn't causing errors before, it was probably in a different language. – Mike Cluck Commented Jan 13, 2016 at 20:01
  • When using the < parison you don't really have to parse it, if one side is a number, the other is treated as a number – adeneo Commented Jan 13, 2016 at 20:02
Add a ment  | 

2 Answers 2

Reset to default 13

Java != JavaScript.

Use parseInt(value, 10).

parseInt() is a global method, no need to link it to any object, you might want to change your code like so:

if( parseInt(window.localStorage.getItem("curLevel")) < this.levelNo )

本文标签: Javascript Integer object is not definedStack Overflow