Jquery查找并过滤日期

时间:2012-10-10 08:19:33

标签: jquery date filter

我有一个常规日历,td有一个点击事件处理程序。我返回表格单元格的值(1-31)。我还有一个事件列表 - 每天只有1个

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

我需要做的是当我点击日历上的日期过滤掉事件时。

1 个答案:

答案 0 :(得分: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);   
  })
 })
})