这是一个愚蠢的小问题,我知道,但我似乎无法找到答案......
我正在尝试使用带有名称的数组更改 Jquery 中的图像,但它读取 n、g 和 2 而不是实际值。
我的代码是:
var huidig = 1;
var arrayTekenen = jQuery.makeArray("peng1.png","peng2.png","peng3.png","peng4.png");
$(document).ready(
function() {
$('#next').bind('click', ClickNext);
}
)
function ClickNext() {
if(huidig<4)
{
huidig++;
}
$("#tekenstap").attr('src', 'img/' + arrayTekenen[huidig]);
}
这是单击对象时出现的错误:
未能在 http://localhost:8383/HTML5Application/img/n 加载资源(15:27:28:901 | 错误,网络)在 http 加载资源(15:27:30:048 | 错误,网络)失败:// localhost:8383/HTML5Application/img/g 无法在 http:// localhost:8383/HTML5Application/img/2 加载资源(15:27:30:729 | 错误,网络)
提前致谢。