0

IE8 と SmartWizard 2.0 プラグインを使用しています。SmartWizard のステップの 1 つに日付ピッカーが含まれています。しかし、入力タグをクリックしてもポップアップは表示されません。

var step4 = '<table id="Step4EffectiveDate" style="margin : auto; padding-top : 50px; height : 50%">';
step4 += '<tr>';
step4 += '<td style="margin : auto"><div class="stepDatePickerDiv">Effective Date: <input type"text" id="datepicker"/></div></td>';
step4 += '</tr>';
step4 += '</table>';

$("#step4").append(step4);

$("#datepicker").datepicker({
    changeMonth: true,
    changeYear: true,
    dateFormat: 'yy-mm-dd'
});
4

1 に答える 1