-1

我有一个标题和图像的轮播。单击图像时,问题/标题会发生变化。我在编写允许我通过 questionList 数组 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;
}

^^这是我到目前为止所拥有的。先感谢您。

4

1 回答 1

0

您需要将已有的函数设置为事件侦听器:

var pageNo=0;
function mycarousel_questionListInc(){
    pages=mycarousel_questionList.length;
    pageNo++;
    mycarousel_questionList[pageNo].title;
}
document.onclick = mycarousel_questionListInc;
于 2012-07-02T18:52:00.113 回答