我有一个这样的数组:
elements = {
opinions: ['p31/php/endpoint.php?get=opinions'], // function to call and API endpoint, php/endpoint.php
top3positive: ['p31/php/endpoint.php?get=top3positive'], // function to call andAPI endpoint, php/endpoint.php
top3negative: ['p31/php/endpoint.php?get=top3negative'], // function to call andAPI endpoint, php/endpoint.php
};
我如何指向第一个数组。如果我这样做alert(elements[0]);
,它不会像我期望的那样返回意见。我究竟做错了什么?
我需要根据其顺序 0、1、2 等指向数组索引。
谢谢