Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
td にクリック イベント ハンドラがある通常のカレンダーがあります。表のセルの値 (1-31) を返します。イベントのリストもあります - 1日1回のみ
<div class="event"> <h2>the title</h2> <div class="date"> October <span class="day">23</span> 2012 </div> </div>
私がする必要があるのは、カレンダーの日付をクリックしてイベントを除外することです。
使用できますajax
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); }) }) })