1 回答

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊
我可以看到您在來自 HTML 的函數(shù)調(diào)用中左右傳遞,但在 HTML 中沒有類似的東西,相反,您應(yīng)該將它們作為字符串傳遞,如下所示:
<input type="button" value="<" onclick="changeImg('left');" />
<input type="button" value=">" onclick="changeImg('right');" />
并且當(dāng)您檢查腳本中的條件時(shí),請(qǐng)執(zhí)行以下操作 === 和 '' 更改
var index = 0;
function changeImg(direction) {
document.slide.src = images[index];
if (direction === 'left') {
if (index == 0) {
index = 35;
} else {
index--;
}
}
if (direction === 'right') {
if (index == 35) {
index = 0;
} else {
index++;
}
}
}
添加回答
舉報(bào)