标签:js undefined js
if (typeof(reValue) == "undefined") {
但是这种方法在调试的时候并不管用。调试发现 typeof(reValue)得到的结果是string(在firefox和chrom中使用firebug调试),所以有必要在原来的基础上再加上一个判断
正确的做法是:
这样做就可以避免typeof(reValue)得倒结果为string的情况了。
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:js undefined js
原文地址:http://blog.csdn.net/shouqiangwei/article/details/48047607