在Jquery Post之后Javascript没有运行

时间:2014-09-12 23:26:38

标签: javascript php jquery post

我确定我在这里做了一些愚蠢的事情,但我不知道是什么。我的Jquery Post函数工作正常,调用我想要的文件,但之后没有其他工作。

http://hq.terravant.com/calendar/calendar.php

谢谢,

// creates the calendar 
  $.post("date_table.inc.php",
              {
                name: 'left',
              },
              function(data){
                $('#main').html(data);
              });           


// the left and right arrow functions that increment and decrement the months    
$( "#leftArrow" ).click(function() {


    alert('left clicked');
    });

    $( "#rightArrow" ).click(function() {
    alert('right clicked');
    }); 

0 个答案:

没有答案