ajax发送并返回mktime

时间:2016-05-13 15:18:22

标签: php jquery ajax

您好我使用ajax函数从我的php文件上的脚本中取回goog日...它'不工作我不明白为什么, 请帮助我需要ajax不想每次在我的php日历中选择日期时重新​​加载

我的HTML是

<p class="texte choixDate"></p>

所以我的jquery代码是

$("#calendrier td a").click(function(){
var jour=$(this).text();
var mois="<?php echo $mois2;?>";
var annee="<?php echo $year;?>";
$.ajax({
url : 'requete.php',
type : 'GET',
data : 'jour='+jour+'&mois='+mois+'&annee='+annee,
dataType : 'text',
success : function(text){ // code_html contient le HTML renvoyé
       $(".texte.choixDate").empty();
       $(".texte.choixDate").append("<i class='fa fa-arrow-circle-down fa-2x'    aria-hidden='true'></i><br/>Vous avez choisi le " + text + " " + jour + " " + mois + " " + annee +"<br/><br/><a class='btn' href='accueil.php?val2=1#agenda1' title='Valider'>Valider</a>");
        }

    });

 });     

我的php文件是

$semaine = array("Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Dimanche"); 
$mois=$_GET["mois"];
$jour=$_GET["jour"];
$annee=$_GET["annee"];

$moisAtester2= mktime(0,0,0,$mois,$jour,$annee);

$jourSem=$semaine[date("w",$moisAtester2)];
echo $jourSem;

感谢帮助!!

1 个答案:

答案 0 :(得分:0)

just use the datetime picker where you can get do that

onClose: function () {
        $scope.isSelected = true;
        var iMonth = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
        var iYear = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
        $(this).datepicker('setDate', new Date(iYear, iMonth, 1));

    }

Use onClose function to call ajax