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 calledInteger
. 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
2 Answers
Reset to default 13Java != 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
版权声明:本文标题:Javascript Integer object is not defined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743597712a2508125.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论