标签: javascript
我在js中有一个键值对数组
var tabList = {0:'#description', 1:'#media', 2:'#attributes', 3:'#calendar', 4:'#pricing'}
我使用密钥获取代码中的值
即。 tabList[2]返回#attributes
tabList[2]
#attributes
我以为我可以反过来拿到钥匙
tabList[#media]并让它返回1
tabList[#media]
1
但这不起作用
如何只使用值作为输入来获取密钥?