2011-03-16 118 views
0

相當新的asp.net Mvc和jQuery。JQuery DatePicker OnSelect加載圖片

有以下代碼工作正常,但我想加載圖像src每次onSelect的datepicker被激發。任何幫助非常感謝。

<script type="text/javascript"> 
    $(function() { 
    $('#datepicker').datepicker({ 
       onSelect: function(date,inst) { 
        alert(date)},          
       inline: true 
      }); 
     });   
</script> 

<h2>Select a date to view the diary:</h2> 

<div id="datepicker">   
</div> 

<div id ="diary">         
    <img src="<%=Url.Action("Image", new { id = DateTime.Now.ToString("dd-MM-yyyy") }) %>" alt="" /> 
</div> 

回答

0
$('#datepicker').datepicker({ 
    onSelect: function(date,inst) { 
        $('#diary img').attr('src', <new image path>); 
     },          
    inline: true 
}); 
+0

感謝,近的工作,但我怎麼打發時間到我的行動 $( '#日記IMG')。ATTR( 'src' 中,「<%= Url.Action(」圖像「,新(Id =日期???)%>'); – 2011-03-16 13:33:30

+0

,這取決於你的業務邏輯.....請記住標記它有用,如果它是有幫助的.... – Avi 2011-03-16 13:41:32