哪里錯了?
<script type="text/javascript">
? ?window.onload = function(){
? ? ? ?var container=document.getElementById("container");
? ? ? ?var list = document.getElementById("list");
? ? ? ?var buttons=document.getElementById("buttons").getElementsByTagName("span");
? ? ? ?var prev = document.getElementById("prev");
? ? ? ?var next = document.getElementById("next");
? ? ? ?function animate(offset){
? ? ? ? ? ?list.style.left = parseInt(list.style.left) + offset +"px";
? ? ? ?};
? ? ? ?next.onclick = function(){animate(-450);};
? ? ? ?prev.onclick = function(){animate(450);};
? ?}
</script>
2015-12-17
animate({"left":"50"},500);