メインの HTML ファイルがあり、ボタンをクリックすると、AJAX test.html から取得されます。
Test.html:
<div type="text" id="datepicker">
H
</div>
my.js:
<script>
jQuery(document).ready(function ($) {
jQuery.ajax({
type: 'POST',
url: 'test.html',
success: function (data2) {
} //end of success
}); //end of ajax
$("#datepicker").datepicker();
});
</script>
Main.html Ajax は test.html を呼び出します。入力フィールドに日付ピッカーを表示する必要があります。どうすれば上記のタスクを達成できますか?
ありがとうございました