2011-07-24 135 views

回答

0

這是一個開始。您需要保留當前圖像顯示內容的全局變量。然後在該變量和數據庫中的圖像列表之間建立一個映射。

<head> 
<title>Untitled Document</title> 
<script src="jquery-1.6.2.js"></script> 
<script> 

$(document).ready(function() { 

    $("#buttonLeft").click(function(){ 
     $("#image1").attr('src','http://scm-l3.technorati.com/11/05/04/33025/obama1.jpg?t=20110504183038'); 
    }); 

    $("#buttonRight").click(function(){ 
     $("#image1").attr('src','http://faculty.smu.edu/rblair/Bush.jpg'); 
    }); 

}); 

</script> 

</head> 
<body> 

<button id="buttonLeft" type="button">&lt;==</button><button id="buttonRight" type="button">==&gt;</button> 
<br /><br /> 
<img id="image1" src='http://www.google.com/intl/en_com/images/srpr/logo2w.png' /> 


</body> 
</html> 
相關問題