selectbox-utils
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/selectboxutils
软件介绍
easy to create numeric selectbox and date select box
example:
<script>
$(function(){
$('#year1').numericOptions({from:2007,to:2011});
$('#month1').numericOptions({from:1,to:12});
$('#date1').numericOptions().datePulldown({year:$('#year1'),month:$('#month1')});
});
</script>
<select id="year1"/><select id="month1"/><select id="date1"/>