轮播图部分是跟着视频老师一起写的,但是为什么点了箭头图片却不切换?
<script type="text/javascript">
window.onload=function(){
var autoplay=document.getElementById('div_autoplay');
var list=document.getElementById('list');
var buttons=document.getElementById('buttons').getElementByTagName('span');
var prev=document.getElementById('prev');
var next=document.getElementById('next');
function animate(offset){
list.style.left=parseInt(list.style.left)+offset+'px';
if(list.style.left>-800){
list.style.left=-4000+'px';
}
if(list.style.left<-4000){
list.style.left=-800+'px';
}
}
next.onclick = function(){
animate(-800);
}
prev.onclick = function(){
animate(800);
}
}
</script>