2

テキストボックスがクリックされたときにカレンダーを実装するにはどうすればよいですか?例:テキストボックスをクリックすると、カレンダーがポップアップ表示されます。このような :ここに画像の説明を入力してください

テキストボックスをクリックすると、カレンダーが表示されました。

ありがとう

4

5 に答える 5

4

AJAX Control Toolkitには、まさにこの機能が含まれています。

ASP.NET AJAXControlToolkitカレンダーのデモンストレーション

于 2012-06-01T13:23:11.570 に答える
2

jQuery UI Datepickerを使用したクロスブラウザー実装:

jQuery UI Datepicker

<script>
    $(function() {
        $( "#datepicker" ).datepicker();
    });
    </script>



<div class="demo">

<p>Date: <input id="datepicker" type="text"></p>

</div><!-- End demo -->



<div style="display: none;" class="demo-description">
<p>The datepicker is tied to a standard form input field.  Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay.  Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.</p>
</div><!-- End demo-description -->
于 2012-06-01T13:24:16.180 に答える
0

jQueryUIのようなものは多分:

http://jqueryui.com/

于 2012-06-01T13:22:31.297 に答える
0

最も速くて簡単な方法は、JQueryまたは他のJavascriptフレームワークを使用することです。

ここにデモがあります:http://jqueryui.com/demos/datepicker/

于 2012-06-01T13:25:11.393 に答える
0

あなたはジュースの日付ピッカーコントロールを試すことができます

于 2012-06-01T13:27:02.767 に答える