在文本框中点击,展示(弹出)日历?(On textbox click ,show(pop up) a

2019-09-17 16:25发布

我想知道我怎么能实现日历点击文本框时? 例如:当我点击一个文本框,日历会弹出。 像这样 :

我点击文本框和日历露面。

谢谢

Answer 1:

Ajax控件工具包中有这个确切的功能。

ASP.NET AJAX控件工具包日历演示



Answer 2:

跨浏览器实现与jQuery UI的日期选择器:

jQuery UI的日期选择器

<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 -->


Answer 3:

像jQuery UI的可能:

http://jqueryui.com/



Answer 4:

最快,最简单的方法是使用jQuery或其他JavaScript框架。

这里有一个演示: http://jqueryui.com/demos/datepicker/



Answer 5:

您可以尝试汁日期选择器控制



文章来源: On textbox click ,show(pop up) a calendar?