通过onclick-Javascript增加数组

时间:2012-07-02 18:46:44

标签: javascript

我有一个标题和图像的旋转木马。单击图像时,问题/标题会发生变化。我在编写函数/代码时遇到问题,这将允许我通过问题列表数组增加onclick。

var mycarousel_questionList= [
{qID: 1, title: "Question 1"},
{qID: 2, title: "Question 2"},
{qID: 3, title: "Question 3"},
];

^^这是我的数组

function mycarousel_questionListInc(){
   pages=mycarousel_questionList.length;
   var pageNo=0;
   document.onclick=pageNo++;
   mycarousel_questionList[pageNo].title;
}

^^到目前为止我所拥有的。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

您需要将已有的功能设置为event listener

var pageNo=0;
function mycarousel_questionListInc(){
    pages=mycarousel_questionList.length;
    pageNo++;
    mycarousel_questionList[pageNo].title;
}
document.onclick = mycarousel_questionListInc;