0

td にクリック イベント ハンドラがある通常のカレンダーがあります。表のセルの値 (1-31) を返します。イベントのリストもあります - 1日1回のみ

<div class="event">
<h2>the title</h2>
<div class="date"> October <span class="day">23</span> 2012 </div>
</div>

私がする必要があるのは、カレンダーの日付をクリックしてイベントを除外することです。

4

1 に答える 1

0

使用できますajax

$(document).ready(function(){
 $(".day").on("click",function(){
  $.get("getevents.php?day="+$(this).text(),function(data){
    $("#showing div").html(data);
             //or
    $(".event").find("h2").text(data);   
  })
 })
})
于 2012-10-10T08:26:15.830 に答える