Loading

javascript/Jquery 将字符串转换成变量名

var a = ['a', 'b',  'c']
var obj = {}
for(i = 0; i < a.length; i++){
    obj[a[i]] = "abc" + 1
}
alert(obj.a)
 alert(obj.b)
  alert(obj.c)
 
如果不想使用obj
可以为
for(i = 0; i < a.length; i++){
    window[a[i]] = "abc" + 1
}
alert(a)
 alert(b)
  alert(c)
但是不推荐这么用,最好是第一种方法。

来源:https://zhidao.baidu.com/question/1366905120567757419.html

posted @ 2019-09-25 15:27  WeiYongZhi  阅读(1666)  评论(0编辑  收藏  举报