记JS中SETATTRIBUTE()的使用注意事项
1.使用setAttribute改变img属性,这种写法是错误的。
img.setAttribute('src', './img/img0${currentIndex}.jpg');
2.应改为:
img.setAttribute('src','./img/img0' + currentIndex + '.jpg');
记JS中SETATTRIBUTE()的使用注意事项
1.使用setAttribute改变img属性,这种写法是错误的。
img.setAttribute('src', './img/img0${currentIndex}.jpg');
2.应改为:
img.setAttribute('src','./img/img0' + currentIndex + '.jpg');