开发者

Date picker for facebook application

开发者 https://www.devze.com 2023-02-17 01:56 出处:网络
hi i am developing a facebook application. i need two date picker in my application. Is 开发者_如何学Gothere any date picker available. please help me...jQuery UI has a wide selection of methods that

hi i am developing a facebook application. i need two date picker in my application. Is 开发者_如何学Gothere any date picker available. please help me...


jQuery UI has a wide selection of methods that can help you develop Web 2.0 applications. One of them is the Datepicker method. You can read about it at:

http://jqueryui.com/demos/datepicker/ Here is a sample implementation:

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

<div class="demo">
<p>Date: <input id="datepicker" type="text"></p>
</div>
0

精彩评论

暂无评论...
验证码 换一张
取 消