0
我加載DATAS與阿賈克斯(直通PHP):日期選擇器不啓動
$retour.= '
<table id="dates_stages_comp">
<tr>
<th>Nom</th><th>Prénom</th><th>Matricule</th><th>Année</th><th>Dates début</th><th>Date fin</th><th> </th>
</tr>';
foreach($resultatSQL as $ligneSQL)
{
$retour .= '<tr><td>'.$ligneSQL->nom.'</td>';
$retour .= '<td>'.$ligneSQL->prenom.'</td>';
$retour .= '<td>'.$ligneSQL->matricule . '</td>';
$retour .= '<td>'.$ligneSQL->annee.'</td>';
$retour .= '<td>'.$ligneSQL->date_debut_stage_comp.'</td>';
$retour .= '<td><input id="datepicker_debut_s_c" type="text" value="'.$ligneSQL->date_fin_stage_comp.'" /></td>';
$retour .= '<td><input id="datepicker_fin_s_c" type="text" value="'.$ligneSQL->date_fin_stage_comp.'" /></td>';
}
$retour.='</table>';
echo $retour;
retour is back in french
This is my js code :
$('#datepicker_debut_s_c').datepicker(
{
dateFormat: 'dd-mm-yy',
changeYear: true,
maxDate: null
});
$('#datepicker_fin_s_c').datepicker(
{
dateFormat: 'dd-mm-yy',
changeYear: true,
maxDate: null
});
alert($('#datepicker_debut_s_c').length);
$.ajax
(
{
type: 'POST',
url: 'dates_stages_complermentaires.php',
dataType: 'text',
success: function(retour)
{
$('#dates_infos_stages_comp').html(retour);
},
error:function(retour)
{
alert(retour);
}
}
);
問題是我的日期選擇器不啓動...
alert($('#datepicker_debut_s_c').length);
給我0
以上代碼在裏面:
$(document).ready(function() {
是的,我做了,我的網站使用jquery-ui很長一段時間,我想添加一個新的日期選擇器 – user3553866 2014-12-13 10:00:22
把日期選擇器放入ajax的成功。 – 2014-12-13 10:09:54
這就是我所做的事情,它很好用,謝謝! – user3553866 2014-12-13 10:15:39